[#bsl-unordered_multimap-0b0-operator_assign-0b] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<bslstl_unorderedmultimap.h>` Assign to this object the value of `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>]& xref:bsl/unordered_multimap-0b0/operator_assign-09.adoc[operator=](xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap] const& rhs); ---- [.small]#xref:bsl/unordered_multimap-0b0/operator_assign-09.adoc[_» more..._]# Move‐assign the contents of `rhs` into this unordered multimap. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>]& xref:bsl/unordered_multimap-0b0/operator_assign-0d.adoc[operator=](xref:BloombergLP/bslmf/MovableRef.adoc[BloombergLP::bslmf::MovableRef<unordered_multimap>] rhs) noexcept(/* see-below */); ---- [.small]#xref:bsl/unordered_multimap-0b0/operator_assign-0d.adoc[_» more..._]# Assign to this object the elements of the `values` initializer list. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>]& xref:bsl/unordered_multimap-0b0/operator_assign-00.adoc[operator=](std::initializer_list<value_type> values); ---- [.small]#xref:bsl/unordered_multimap-0b0/operator_assign-00.adoc[_» more..._]# == Return Value reference providing modifiable access to this object == Parameters [cols="1,4"] |=== | Name| Description | *rhs* | unordered multimap to copy‐assign from | *values* | initializer list of elements to assign |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#