pushFront overloads
Declared in <bdlcc_deque.h>
Block until space is available, then move-append item to the front.
void
pushFront(bslmf::MovableRef<TYPE> item);
» more...
Block until space in this container becomes available (see {High-Water Mark Feature}), then append the specified item to the front of this container.
void
pushFront(TYPE const& item);
» more...
| Name | Description |
|---|---|
| item | value to move-append |