absl::InlinedVector::operator=

Overload of InlinedVector::operator=(...) that moves the elements of other into the inlined vector.

Synopsis

Declared in <absl/container/inlined_vector.h>

InlinedVector&
operator=(InlinedVector&& other);

Description

NOTE: as a result of calling this overload, other is left in a valid but unspecified state.

Return Value

A reference to the inlined vector.

Parameters

NameDescription
otherThe inlined vector to move from.