Tools.h++ Manual
104011 Tandem Computers Incorporated 22-71
22
T get();
Returns and removes the first item in the queue (the item least recently
inserted into the queue).
RWBoolean isEmpty() const;
Returns
TRUE
if there are no items in the queue, otherwise
FALSE
.
void insert(const T& a);
Inserts the item
a
at the end of the queue.
T last() const;
Returns, but does not remove, the last item in the queue (the item most
recently inserted into the queue).