cl-list*

cl-list* is a compiled Lisp function in `cl-lib.el'.

(cl-list* ARG...)

This function has a compiler macro `cl--compiler-macro-list*'.

Return a new list with specified ARGs as elements, consed to last ARG.
Thus, `(cl-list* A B C D)' is equivalent to `(nconc (list A B C) D)', or to
`(cons A (cons B (cons C D)))'.