multiple-value-list evaluates form and creates a list of the multiple values it returns.
(multiple-value-list (floor -3 4))
→(-1 1)
None.
None.
None.
multiple-value-list and values-list are inverses of each other.
(multiple-value-list form) ≡ (multiple-value-call #'list form)