Insert elements into this vector.
Declared in <bslstl_vector.h>
template<class INPUT_ITER>
iterator
insert(
const_iterator position,
INPUT_ITER first,
INPUT_ITER last);
iterator referring to the first newly inserted element, or position if none
| Name | Description |
|---|---|
| position | element position or insertion point |
| first | beginning of the range (inclusive) |
| last | end of the range (exclusive) |