apply

(apply function list)

The apply function executes a function, where arguments are taken from list.

Examples

: (apply '+ (list 1 2.2 4.5))

7.7000

: (apply 'strcat '("a" "b" "cde"))

"abcde"