Next: queues folding, Previous: queues inspection, Up: queues [Index]
The following syntactic bindings are exported by the library
(vicare containers queues)
. 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 queue. Raise an assertion violation if queue is empty.
Return the object at the front of the queue. Raise an assertion violation if queue is empty.
Push obj on the front of the queue.
Remove the object at the rear of the queue and return it. Raise an assertion violation if queue is empty.
Remove all the elements from queue.