Next: deques folding, Previous: deques inspection, Up: deques [Index]
The following syntactic bindings are exported by the library
(vicare containers deques)
. The syntactic bindings whose name
is prefixed with $
are unsafe operations: they do not
validate their arguments before accessing them.
Return the object at the front of the deque. Raise an assertion violation if deque is empty.
Return the object at the rear of the deque. Raise an assertion violation if deque is empty.
Push obj on the front of the deque.
Push obj on the rear of the deque.
Remove the object at the front of the deque and return it. Raise an assertion violation if deque is empty.
Remove the object at the rear of the deque and return it. Raise an assertion violation if deque is empty.
Remove all the elements from deque.