uncurry method

Function4<A, B, C, D, R> uncurry()

Implementation

Function4<A, B, C, D, R> uncurry() =>
    (A first, B second, C third, D fourth) =>
        this(first)(second)(third)(fourth);