[#absl-InlinedVector-emplace] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::emplace :relfileprefix: ../../ :mrdocs: Constructs and inserts an element using `args...` in the inlined vector at `pos`, returning an `iterator` pointing to the newly emplaced element. == Synopsis Declared in `<absl/container/inlined_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... Args> xref:absl/InlinedVector/iterator.adoc[iterator] emplace( xref:absl/InlinedVector/const_iterator.adoc[const_iterator] pos, Args&&... args); ---- == Return Value An `iterator` to the newly emplaced element. == Parameters [cols="1,4"] |=== | Name| Description | *pos* | The position at which to emplace. | *args* | The arguments used to construct the element. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#