absl::InlinedVector::push_back

push_back overloads

Synopses

Declared in <absl/container/inlined_vector.h>

Inserts a copy of v in the inlined vector at end().

void
push_back(const_reference v);
» more...

Overload of InlinedVector::push_back(...) for inserting v at end() using move semantics.

void
push_back(value_type&& v);
» more...

Parameters

NameDescription
vThe value to copy.