[#absl-chunked_queue-emplace_back] = xref:absl.adoc[absl]::xref:absl/chunked_queue.adoc[chunked_queue]::emplace_back :relfileprefix: ../../ :mrdocs: Appends a new element to the end of the container. == Synopsis Declared in `<absl/container/chunked_queue.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... A> T& emplace_back(A&&... args); ---- == Description The element is constructed in‐place with `args`. Invalidates `end()` iterator. References to other elements remain valid. == Return Value A reference to the new element. == Parameters [cols="1,4"] |=== | Name| Description | *args* | The arguments used to construct the new element. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#