forcePushFront overloads
Declared in <bdlcc_deque.h>
Move-append item to the front, ignoring the high-water mark.
void
forcePushFront(bslmf::MovableRef<TYPE> item);
» more...
Append item to the front, ignoring the high-water mark.
void
forcePushFront(TYPE const& item);
» more...
Append [begin .. end)] to the front, ignoring the high-water mark.
template<class INPUT_ITER>
void
forcePushFront(
INPUT_ITER begin,
INPUT_ITER end);
» more...
| Name | Description |
|---|---|
| item | value to move-append |
| begin | beginning of the input range |
| end | end of the input range |