Partially apply a function
Apply a function with an array of arguments
Function to be applied
Arguments to be passed to fn
Result of function application
Call a nullary function
Function to call
Result of function execution
Call a unary function
Function to call
Argument to pass to fn
Result of function execution
Call a binary function
Function to call
First argument to pass to fn
Second argument to pass to fn
Result of function execution
Call a ternary function
Function to call
First argument to pass to fn
Second argument to pass to fn
Third argument to pass to fn
Result of function execution
Call a n-ary function
Function to call
Arguments to pass to fn
Result of function execution
Compose two unary functions
Outer unary function
Inner unary function
Composite unary function
Compose two unary functions
Inner unary function
Outer unary function
Composite n-ary function
Compose an n-ary function with an unary function
Outer unary function
Inner n-ary function
Composite n-ary function
Compose an unary function with an n-ary function
Inner n-ary function
Outer unary function
Composite n-ary function
Swap arguments of a binary function
Function to swap arguments
Function that calls fn
Swap the first 2 arguments of an n-ary function
Function to swap arguments
Function that calls fn
Turn a binary function into n-ary by calling that function multiple times
Function to apply
Function that calls fn
multiple times
Turn a binary function into n-ary by calling that function multiple times
Function to apply
Function that calls fn
multiple times
Partially apply a function
Function to apply
First argument of fn
Function that provides remaining arguments to fn
Partially apply a function
Function to apply
Array of all arguments except the first one
Function that provides the first argument to fn
Partially apply a function
Function to apply
All arguments except the first one
Function that provides the first argument to fn
Uncurry a function that is result of curry
Function to uncurry
Uncurried function
Generated using TypeDoc
Apply a function with an iterable of arguments
Function to be applied
Arguments to be passed to
fn
Result of function application