uncurry property

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) get uncurry =>
    (input1, input2, input3) => this(input1)(input2)(input3);