uncurry method

Output Function(Input1, Input2, Input3, Input4) uncurry()

Convert a function that returns a series of functions to a single function accepting four parameters.

Inverse of curry.

Implementation

Output Function(Input1, Input2, Input3, Input4) uncurry() =>
    (Input1 input1, Input2 input2, Input3 input3, Input4 input4) =>
        this(input1)(input2)(input3)(input4);