Skip to content
Turtle Kitty edited this page Dec 6, 2015 · 2 revisions

apply

Applies a function to a list of arguments and a record of options. Not sure it's really necessary, as functions already answer an apply message, but it's there for the sake of Lisp tradition.

(apply + '(1 2 3 4 5) (:))
    -> 15

(+.apply '(1 2 3 4 5) (:))
    -> 15
Clone this wiki locally