rotatef
{place}* ⇒ nil
place | a place. |
rotatef modifies the values of each place by rotating values from one place into another.
If a place produces more values than there are store variables, the extra values are ignored. If a place produces fewer values than there are store variables, the missing values are set to nil.
In the form (rotatef place1 place2 ... placen)
,
the values in place1 through placen are read and written.
Values 2 through n
and value 1 are then stored into place1 through placen.
It is as if all the places form an end-around shift register
that is rotated one place to the left, with the value of place1
being shifted around the end to placen.
For information about the evaluation of subforms of places, see Evaluation of Subforms to Places.
(let ((n 0)
(x (list 'a 'b 'c 'd 'e 'f 'g)))
(rotatef (nth (incf n) x)
(nth (incf n) x)
(nth (incf n) x))
x) ⇒ (A C D B E F G)
define-setf-expander, defsetf, setf; psetf, shiftf, *macroexpand-hook*, Generalized Reference