Appends a new element to the end of the container.
Declared in <absl/container/chunked_queue.h>
template<typename... A>
T&
emplace_back(A&&... args);
The element is constructed in-place with args. Invalidates end() iterator. References to other elements remain valid.
A reference to the new element.
| Name | Description |
|---|---|
| args | The arguments used to construct the new element. |