list*

list* is an alias for `cl-list*' in `cl.el'.

(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)))'.