absl::chunked_queue::emplace_back

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

NameDescription
argsThe arguments used to construct the new element.