bitdeque::insert

Insert count copies of a bit before the given position.

Synopsis

Declared in <util/bitdeque.h>

iterator
insert(
    const_iterator pos,
    size_type count,
    bool val);

Return Value

Iterator to the first inserted bit.

Parameters

NameDescription
posIterator before which the bits are inserted.
countNumber of bits to insert.
valValue assigned to every inserted bit.