Standard C++ Library Reference ISO/IEC (VERSION3)

The member function returns a reference to the first element of the controlled sequence, which
must be non-empty.
queue::pop
void pop();
The member function removes the first element of the controlled sequence, which must be
non-empty.
queue::push
void push(const Ty& val);
The member function inserts an element with value val at the end of the controlled sequence.
queue::queue
queue();
explicit queue(const container_type& cont);
The first constructor initializes the stored object with c(), to specify an empty initial controlled
sequence. The second constructor initializes the stored object with c(cont), to specify an
initial controlled sequence that is a copy of the sequence controlled by cont.
queue::size
size_type size() const;
The member function returns the length of the controlled sequence.
queue::size_type
typedef typename Container::size_type size_type;
The type is a synonym for Container::size_type.
queue::value_type
typedef typename Container::value_type value_type;
The type is a synonym for Container::value_type.
See also the Table of Contents and the Index.
Copyright © 1994-2001 by P.J. Plauger. Portions derived from work copyright © 1994 by