The partial function and the %><%< code=""> operator allows you to
partially call a function with a list of arguments. Named elements in the
list will be matched to function arguments and these arguments will be
removed from the returned function. Unnamed elements are only allowed for
functions containing an ellipsis, in which case they are considered part of
the ellipsis.
%<>
Usage
fun %><% args<="" div="">
partial(fun, args)
%>
Arguments
fun
A function to be partially applied. Can be any function (normal,
already partially applied, primitives).
args
A list of values that should be applied to the function.
Value
A function with the same arguments as fun except for the ones
given in args