[#absl-HashState-operator_assign-07] = xref:absl.adoc[absl]::xref:absl/HashState.adoc[HashState]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<absl/hash/hash.h>` Copy assignment is disabled; `HashState` is move‐only. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/HashState.adoc[HashState]& xref:absl/HashState/operator_assign-00.adoc[operator=](xref:absl/HashState.adoc[HashState] const& other) = delete; ---- [.small]#xref:absl/HashState/operator_assign-00.adoc[_» more..._]# Move‐assign a `HashState`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/HashState.adoc[HashState]& xref:absl/HashState/operator_assign-05.adoc[operator=](xref:absl/HashState.adoc[HashState]&& other) = default; ---- [.small]#xref:absl/HashState/operator_assign-05.adoc[_» more..._]# == Return Value A reference to this object. == Parameters [cols="1,4"] |=== | Name| Description | *other* | The source object. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#