Go to the first, previous, next, last section, table of contents.


multiple-value-list [Macro]

multiple-value-list form => list

Arguments and Values::

form---a form; evaluated as described below.

list---a list of the values returned by form.

Description::

multiple-value-list evaluates form and creates a list of the multiple values_2 it returns.

Examples::

 (multiple-value-list (floor -3 4)) =>  (-1 1)

See Also::

section values-list [Function] , section multiple-value-call [Special Operator]

Notes::

multiple-value-list and values-list are inverses of each other.

 (multiple-value-list form) == (multiple-value-call #'list form)


Go to the first, previous, next, last section, table of contents.