CurryExtension2<Input1, Input2, Output> extension

Extract first parameter from this function to allow curring.

Extract last parameter from this function to allow curring.

on
  • Output Function(Input1, Input2)

Properties

curry → Output Function(Input2) Function(Input1)

Available on Output Function(Input1, Input2), provided by the CurryExtension2 extension

Convert this function from accepting two parameters to a function that returns another function both accepting one parameter.
no setter
curryLast → Output Function(Input1) Function(Input2)

Available on Output Function(Input1, Input2), provided by the CurryExtension2 extension

Convert this function from accepting two parameters to a function that returns another function both accepting one parameter.
no setter