[#bsl-unordered_multiset-06c-operator_assign-0c4] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multiset-06c.adoc[unordered_multiset]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<bslstl_unorderedmultiset.h>` Copy‐assign from `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>]& xref:bsl/unordered_multiset-06c/operator_assign-0c0.adoc[operator=](xref:bsl/unordered_multiset-06c.adoc[unordered_multiset] const& rhs); ---- [.small]#xref:bsl/unordered_multiset-06c/operator_assign-0c0.adoc[_» more..._]# Move‐assign from `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>]& xref:bsl/unordered_multiset-06c/operator_assign-0f.adoc[operator=](xref:BloombergLP/bslmf/MovableRef.adoc[BloombergLP::bslmf::MovableRef<unordered_multiset>] rhs) noexcept(/* see-below */); ---- [.small]#xref:bsl/unordered_multiset-06c/operator_assign-0f.adoc[_» more..._]# Assign from the specified `values` initializer list. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>]& xref:bsl/unordered_multiset-06c/operator_assign-03.adoc[operator=](std::initializer_list<KEY> values); ---- [.small]#xref:bsl/unordered_multiset-06c/operator_assign-03.adoc[_» more..._]# == Return Value reference providing modifiable access to this object == Parameters [cols="1,4"] |=== | Name| Description | *rhs* | unordered multiset to copy‐assign from | *values* | initializer list of keys to assign |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#