pop
macro
(pop place)
Returns the first element of the list place and updates the setfable place to the rest of the list.
first
place
setf
rest
make-html > (let a '(1 2 3)) it: a make-html > (pop a) it: 1 make-html > a it: (2 3)