Insert the bits in [first,last) before the given position.]
Declared in <util/bitdeque.h>
template<typename It>
iterator
insert(
const_iterator pos,
It first,
It last);
Iterator to the first inserted bit.
| 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. |