[#absl-InlinedVector-insert-0a7] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::insert :relfileprefix: ../../ :mrdocs: Overload of `InlinedVector::insert(...)` that inserts `v` at `pos` using move semantics, returning an `iterator` to the newly inserted element. == 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, xref:absl/InlinedVector/value_type.adoc[value_type]&& v); ---- == Return Value An `iterator` to the newly inserted element. == Parameters [cols="1,4"] |=== | Name| Description | *pos* | The position at which to insert. | *v* | The value to move. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#