Package: alexandria

Function rcurry

Lambda List

rcurry (function &rest arguments)

Details

Returns 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