Function: cl-values-list
cl-values-list is a byte-compiled function defined in cl-lib.el.gz.
Signature
(cl-values-list LIST)
Documentation
Return multiple values, Common Lisp style, taken from a list.
LIST specifies the list of values that the containing function should return.
Note that Emacs Lisp doesn't really support multiple values, so all this function does is return LIST.
Probably introduced at or before Emacs version 27.1.
Aliases
values-list (obsolete since 27.1)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-lib.el.gz
(defun cl-values-list (list)
"Return multiple values, Common Lisp style, taken from a list.
LIST specifies the list of values that the containing function
should return.
Note that Emacs Lisp doesn't really support multiple values, so
all this function does is return LIST."
(unless (listp list)
(signal 'wrong-type-argument list))
list)