Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Lisp

Idiom #37 Currying

Transform a function that takes multiple arguments into a function for which some of the arguments are preset.

(defun curry (fn &rest args)
  (lambda (&rest remaining-args)
    (apply fn (append args remaining-args))))

(defun add (a b)
  (+ a b))

(funcall (curry add 2) 1) 
  
(def add5 (partial + 5))

New implementation...
< >
Adrian