Assignment operators
Declared in <bslstl_unorderedmultiset.h>
Copy-assign from rhs.
unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>&
operator=(unordered_multiset const& rhs);
» more...
Move-assign from rhs.
unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>&
operator=(BloombergLP::bslmf::MovableRef<unordered_multiset> rhs) noexcept(/* see-below */);
» more...
Assign from the specified values initializer list.
unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>&
operator=(std::initializer_list<KEY> values);
» more...
reference providing modifiable access to this object
| Name | Description |
|---|---|
| rhs | unordered multiset to copy-assign from |
| values | initializer list of keys to assign |