Inserts the elements of the range [first, last) before pos.]
Declared in <prevector.h>
template<std::input_iterator InputIterator>
void
insert(
iterator pos,
InputIterator first,
InputIterator last);
| Name | Description |
|---|---|
| pos | Iterator to the position to insert before. |
| first | Iterator to the first element to insert. |
| last | Iterator one past the last element to insert. |