[#bsl-unordered_map-02b-operator_assign-08] = xref:bsl.adoc[bsl]::xref:bsl/unordered_map-02b.adoc[unordered_map]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<bslstl_unorderedmap.h>` Copy‐assign from `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_map-02b.adoc[unordered_map]& xref:bsl/unordered_map-02b/operator_assign-02.adoc[operator=](xref:bsl/unordered_map-02b.adoc[unordered_map] const& rhs); ---- [.small]#xref:bsl/unordered_map-02b/operator_assign-02.adoc[_» more..._]# Move‐assign to this unordered map from `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_map-02b.adoc[unordered_map]& xref:bsl/unordered_map-02b/operator_assign-04.adoc[operator=](xref:BloombergLP/bslmf/MovableRef.adoc[BloombergLP::bslmf::MovableRef<unordered_map>] rhs) noexcept(/* see-below */); ---- [.small]#xref:bsl/unordered_map-02b/operator_assign-04.adoc[_» more..._]# Assign to this unordered map the contents of initializer list `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_map-02b.adoc[unordered_map]& xref:bsl/unordered_map-02b/operator_assign-00.adoc[operator=](std::initializer_list<value_type> rhs); ---- [.small]#xref:bsl/unordered_map-02b/operator_assign-00.adoc[_» more..._]# == Return Value * a reference providing modifiable access to this object * reference providing modifiable access to this object == Parameters [cols="1,4"] |=== | Name| Description | *rhs* | unordered map to copy from |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#