|
ANSI Common Lisp 5 Data and Control Flow 5.3 Dictionary of Data and Control Flow
5.3.50 multiple-value-list |
Macro |
- Syntax:
-
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 values2 it returns.
- Examples:
-
(multiple-value-list (floor -3 4)) (-1 1)
- See Also:
-
values-list,
multiple-value-call
- Notes:
-
multiple-value-list and values-list are inverses
of each other.
(multiple-value-list form) ==(multiple-value-call #'list form)
- Allegro CL Implementation Details:
-
None.
|