curry2<A, B, C> function

Function1<A, Function1<B, C>> curry2<A, B, C>(
  1. Function2<A, B, C> fun
)

Implementation

Function1<A, Function1<B, C>> curry2<A, B, C>(Function2<A, B, C> fun) => (a) => (b) => fun(a, b);