Go to the first, previous, next, last section, table of contents.


push [Macro]

push item place => new-place-value

Arguments and Values::

item---an object.

place---a place, the value of which may be any object.

new-place-value---a list (the new value of place).

Description::

push prepends item to the list that is stored in place, stores the resulting list in place, and returns the list.

For information about the evaluation of subforms of place, see section Evaluation of Subforms to Places.

Examples::

 (setq llst '(nil)) =>  (NIL)
 (push 1 (car llst)) =>  (1)
 llst =>  ((1))
 (push 1 (car llst)) =>  (1 1)
 llst =>  ((1 1))
 (setq x '(a (b c) d)) =>  (A (B C) D)
 (push 5 (cadr x)) =>  (5 B C)  
 x =>  (A (5 B C) D)

Side Effects::

The contents of place are modified.

See Also::

section pop [Macro] , section pushnew [Macro] , section Generalized Reference

Notes::

The effect of (push item place) is equivalent to

 (setf place (cons item place))

except that the subforms of place are evaluated only once, and item is evaluated before place.


Go to the first, previous, next, last section, table of contents.