Inserts the elements of the range [first, last) before pos.]

Synopsis

Declared in <prevector.h>

template<std::input_iterator InputIterator>
void
insert(
    iterator pos,
    InputIterator first,
    InputIterator last);

Parameters

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.

Created with MrDocs