Appends a new element to the end of the container.
Synopsis
Declared in <absl/container/chunked_queue.h>
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
Name |
Description |
args |
The arguments used to construct the new element. |
Created with MrDocs