[#absl-InlinedVector-emplace_back] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::emplace_back :relfileprefix: ../../ :mrdocs: Constructs and inserts an element using `args...` in the inlined vector at `end()`, returning a `reference` 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/reference.adoc[reference] emplace_back(Args&&... args); ---- == Return Value A `reference` to the newly emplaced element. == Parameters [cols="1,4"] |=== | Name| Description | *args* | The arguments used to construct the element. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#