bitdeque::insert

Insert the bits in [first,last) before the given position.]

Synopsis

Declared in <util/bitdeque.h>

template<typename It>
iterator
insert(
    const_iterator pos,
    It first,
    It last);

Return Value

Iterator to the first inserted bit.

Parameters

NameDescription
posIterator before which the bits are inserted.
firstIterator to the first bit to insert.
lastIterator past the last bit to insert.