curryAll property

Output Function(Input3) Function(Input2) Function(Input1) curryAll

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