push overloads
Declared in <bslstl_queue.h>
Push onto the back of this queue a value_type object having the value of the specified value (on entry) by moving the contents of value to the new object on this queue. value is left in a valid but unspecified state.
void
push(BloombergLP::bslmf::MovableRef<value_type> value);
» more...
Push onto the back of this queue a value_type object having the specified value.
void
push(value_type const& value);
» more...