The curry function and the %<%< code=""> operator performs currying on
a function by partially applying the first argument, returning a function
that accepts all but the first arguments of the former function. If the first
argument is ... the curried argument will be interpreted as part of
the ellipsis and the ellipsis will be retained in the returned function. It
is thus possible to curry functions comtaining ellipis arguments to infinity
(though not adviced).
%<>
Usage
fun %<% arg<="" div="">
curry(fun, arg)
%>
Arguments
fun
A function to be curried. Can be any function (normal,
already curried, primitives).
arg
The value that should be applied to the first argument.
Value
A function with the same arguments as fun except for the
first, unless the first is ... in which case it will be retained.