[#absl-InlinedVector-insert-00] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::insert :relfileprefix: ../../ :mrdocs: Overload of `InlinedVector::insert(...)` that inserts copies of the elements of `list` 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"] ---- xref:absl/InlinedVector/iterator.adoc[iterator] insert( xref:absl/InlinedVector/const_iterator.adoc[const_iterator] pos, std::initializer_list<value_type> list); ---- == Return Value An `iterator` to the first newly inserted element. == Parameters [cols="1,4"] |=== | Name| Description | *pos* | The position at which to insert. | *list* | The initializer list to copy elements from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#