absl::InlinedVector::emplace_back

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>

template<typename... Args>
reference
emplace_back(Args&&... args);

Return Value

A reference to the newly emplaced element.

Parameters

NameDescription
argsThe arguments used to construct the element.