[#absl-linked_hash_set-operator_assign-06] = xref:absl.adoc[absl]::xref:absl/linked_hash_set.adoc[linked_hash_set]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<absl/container/linked_hash_set.h>` Copy assignment operator. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/linked_hash_set.adoc[linked_hash_set]& xref:absl/linked_hash_set/operator_assign-0a.adoc[operator=](xref:absl/linked_hash_set.adoc[linked_hash_set] const& other); ---- [.small]#xref:absl/linked_hash_set/operator_assign-0a.adoc[_» more..._]# Move assignment operator. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/linked_hash_set.adoc[linked_hash_set]& xref:absl/linked_hash_set/operator_assign-0e.adoc[operator=](xref:absl/linked_hash_set.adoc[linked_hash_set]&& other) noexcept; ---- [.small]#xref:absl/linked_hash_set/operator_assign-0e.adoc[_» more..._]# Replaces the contents with the elements from an initializer list. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/linked_hash_set.adoc[linked_hash_set]& xref:absl/linked_hash_set/operator_assign-03.adoc[operator=](std::initializer_list<key_type> values); ---- [.small]#xref:absl/linked_hash_set/operator_assign-03.adoc[_» more..._]# == Return Value A reference to this set. == Parameters [cols="1,4"] |=== | Name| Description | *other* | The set to copy from. | *values* | The initializer list of elements. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#