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
| Parameter | Type |
|---|---|
proc | (arg1, arg2) => R |
arg1 | T |
Returns
Function
Parameters
| Parameter | Type |
|---|---|
arg2 | K |
Returns
R