Function: multiple-value-call

multiple-value-call is a function alias for apply, defined in eval.c.

This function is obsolete since 27.1; use cl-multiple-value-call instead.

Signature

(multiple-value-call FUNCTION &rest ARGUMENTS)

Documentation

Call FUNCTION with our remaining args, using our last arg as list of args.

Then return the value FUNCTION returns. With a single argument, call the argument's first element using the other elements as args. Thus, (apply '+ 1 2 '(3 4)) returns 10.

Aliases

multiple-value-call (obsolete since 27.1) cl-multiple-value-call