uncurry method

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

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

Inverse of curry.

Implementation

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