BloombergLP::bdlcc::Deque::forcePushFront

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);
» 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...

Parameters

NameDescription
itemvalue to move-append
beginbeginning of the input range
endend of the input range