CurryExtension3<Input1, Input2, Input3, Output> extension
- on
-
- Output Function(Input1, Input2, Input3)
Properties
-
curry
→ Output Function(Input2, Input3) Function(Input1)
-
Extract first parameter from this function to allow curring.
read-only
-
curryAll
→ Output Function(Input3) Function(Input2) Function(Input1)
-
Convert this function from accepting three parameters to a series
of functions that all accept one parameter.
read-only
-
curryLast
→ Output Function(Input1, Input2) Function(Input3)
-
Extract last parameter from this function to allow curring.
read-only