Apply

(apply function argument ... list) -> values

Performs the procedure using the elements of the list as the arguments. This is similar to map, but deals with only one list.

>> (apply + 1 2 (list 3 4))
:: 10

See Also: map