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