Overload of InlinedVector::insert(...) that inserts the range [first,] last) starting at pos, returning an iterator pointing to the first of the newly inserted elements.
Declared in <absl/container/inlined_vector.h>
template<
typename InputIterator,
DisableIfAtLeastForwardIterator<InputIterator> = 0>
iterator
insert(
const_iterator pos,
InputIterator first,
InputIterator last);
NOTE: this overload is for iterators that are "input" category.
An iterator to the first newly inserted element.
| Name | Description |
|---|---|
| pos | The position at which to insert. |
| first | An iterator to the beginning of the range. |
| last | An iterator past the end of the range. |