insert overloads
Synopses
Declared in <prevector.h>
Inserts value before pos and returns an iterator to the inserted element.
Inserts count copies of value before pos.
void
insert(
iterator pos,
size_type count,
T const& value);
Inserts the elements of the range [first, last) before pos.]
Return Value
An iterator to the inserted element.
Parameters
Name |
Description |
pos |
Iterator to the position to insert before. |
value |
The value to insert. |
count |
The number of copies to insert. |
first |
Iterator to the first element to insert. |
last |
Iterator one past the last element to insert. |
Created with MrDocs