Passes a list of arguments to, and executes, a specified function
(apply 'function list)
Arguments
defun, or a lambda expression.
A function. The function argument can be either a symbol identifying anil, if the function accepts no arguments.
A list. Can beReturn Values
The result of the function call.
Examples
Command: (apply '+ '(1 2 3))
6
Command: (apply 'strcat '("a" "b" "c"))
"abc"