[#absl-InlinedVector-operator_assign-0e7] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::operator= :relfileprefix: ../../ :mrdocs: Overload of `InlinedVector::operator=(...)` that moves the elements of `other` into the inlined vector. == Synopsis Declared in `<absl/container/inlined_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/InlinedVector.adoc[InlinedVector]& operator=(xref:absl/InlinedVector.adoc[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 [cols="1,4"] |=== | Name| Description | *other* | The inlined vector to move from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#