curry property

Output Function(Input2, Input3) Function(Input1) curry

Extract first parameter from this function to allow curring.

Implementation

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