curry method

Output Function(Input3) Function(Input2) curry(
  1. Input1 input1
)

Convert this function from accepting three parameters to a series of functions that all accept one parameter.

Inverse of uncurry.

Implementation

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