Package: alexandria
Function rcurry
Lambda Listrcurry (function &rest arguments) DetailsReturns a function that applies the arguments it is called with and arguments to function. Examples(funcall (curry #'cons 'a) 'b) => (A . B) (funcall (rcurry #'cons 'a) 'b) => (B . A) | See also |