<deque>

The class of double-ended queues.  This class supports efficient forward and backward iteration, and efficient addition and removal of elements from the beginning or end of the sequence.

Exported from

Modifiers

abstract free open

Make keywords

size:An instance of <integer> specifying the size of the deque.  The default value is 0.
fill:An instance of <object> specifying an initial value for each element of the deque.  The default value is #f.

Superclasses

Functions on <deque>

The common-dylan module.
Whenever possible, we have tried to keep the Dylan module pristine and unextended, preferring to add our extensions to separate modules or libraries.
The class of integers.
The class of all Dylan objects.
The class of stretchy sequences.
The class of sequences that may be modified.
Removes and returns the first element of a deque.
Removes and returns an element from the end of a deque.
Adds an element to the front of a deque.
Adds an element to the end of a deque.