Function: CURRY

Source

(defun curry (fun &rest init-args)
  (lambda (&rest args)
    (apply fun (append init-args args))))
Source Context