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