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

Name

Description

pos

Iterator before which the bits are inserted.

first

Iterator to the first bit to insert.

last

Iterator past the last bit to insert.

Created with MrDocs