uncurry method

Output Function(Input1, Input2) uncurry()

Convert a function that returns another function to a single function accepting two parameters.

Inverse of curry.

Implementation

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