push-back ( obj deque -- )
Factor documentation > Factor handbook > The language > Collections > Deques
Prev:push-all-front ( seq deque -- )
Next:push-all-back ( seq deque -- )


Vocabulary
deques

Inputs and outputs
objan object
dequea deque


Word description
Push the object onto the back of the deque.

Notes
This operation is O(1).

Definition
USING: kernel ;

IN: deques

: push-back ( obj deque -- ) push-back* drop ; inline