Assignment operators
Declared in <bslstl_unorderedmultimap.h>
Assign to this object the value of rhs.
unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>&
operator=(unordered_multimap const& rhs);
» more...
Move-assign the contents of rhs into this unordered multimap.
unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>&
operator=(BloombergLP::bslmf::MovableRef<unordered_multimap> rhs) noexcept(/* see-below */);
» more...
Assign to this object the elements of the values initializer list.
unordered_multimap<KEY, VALUE, HASH, EQUAL, ALLOCATOR>&
operator=(std::initializer_list<value_type> values);
» more...
reference providing modifiable access to this object
| Name | Description |
|---|---|
| rhs | unordered multimap to copy-assign from |
| values | initializer list of elements to assign |