absl::InlinedVector::operator=

Replaces the elements of the inlined vector with copies of the elements of list.

Synopsis

Declared in <absl/container/inlined_vector.h>

InlinedVector&
operator=(std::initializer_list<value_type> list);

Return Value

A reference to the inlined vector.

Parameters

NameDescription
listThe initializer list to copy elements from.