BloombergLP::bdlcc::Deque::forcePushBack

forcePushBack overloads

Synopses

Declared in <bdlcc_deque.h>

Move-append item to the back, ignoring the high-water mark.

void
forcePushBack(bslmf::MovableRef<TYPE> item);
» more...

Append item to the back, ignoring the high-water mark.

void
forcePushBack(TYPE const& item);
» more...

Append [begin .. end)] to the back, ignoring the high-water mark.

template<class INPUT_ITER>
void
forcePushBack(
    INPUT_ITER begin,
    INPUT_ITER end);
» more...

Parameters

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