Function: curry2to1()

curry2to1<T, K, R>(proc, arg1): (arg2) => R

Takes a 2 argument function and partially applies the first argument.

Type parameters

Type parameter
T
K
R

Parameters

ParameterType
proc(arg1, arg2) => R
arg1T

Returns

Function

Parameters

ParameterType
arg2K

Returns

R