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