[#absl-InlinedVector-insert-0f] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::insert :relfileprefix: ../../ :mrdocs: 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. == Synopsis Declared in `<absl/container/inlined_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename ForwardIterator, xref:absl/InlinedVector.adoc[EnableIfAtLeastForwardIterator<ForwardIterator>] = 0> xref:absl/InlinedVector/iterator.adoc[iterator] insert( xref:absl/InlinedVector/const_iterator.adoc[const_iterator] pos, ForwardIterator first, ForwardIterator last); ---- == Description NOTE: this overload is for iterators that are "forward" category or better. == Return Value An `iterator` to the first newly inserted element. == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#