Curry6X<A, B, C, D, E, F, T> extension

Curries the function.

Transforms it into a higher order function that takes a single argument and returns another function that takes a single argument and returns another function, as many times as many there were arguments in the original function.

Handy for partial application.

on
  • F6<A, B, C, D, E, F, T>

Methods

curry(A a) CF5<B, C, D, E, F, T>
Curries the function.