front overloads
Declared in <bslstl_queue.h>
Return a reference providing modifiable access to the front (the earliest pushed) element from this queue object.
queue<VALUE, CONTAINER>::reference
front();
» more...
Return the immutable front (the earliest pushed) element from this queue object. In effect, performs c.front().
queue<VALUE, CONTAINER>::const_reference
front() const;
» more...