uncurry property

Output Function(Input1, Input2, Input3, Input4) get 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) get uncurry =>
    (input1, input2, input3, input4) => this(input1)(input2)(input3)(input4);