(rontolisp) docs
← Functions

values-list

(values-list list)

Spreads list as multiple values: the first element is the primary value and the rest reach the multiple-value consumers, so (values-list '(1 2)) is equivalent to (values 1 2). An empty list yields no values (nil).