bsl::unordered_multimap::operator=

Assignment operators

Synopses

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...

Return Value

reference providing modifiable access to this object

Parameters

NameDescription
rhsunordered multimap to copy-assign from
valuesinitializer list of elements to assign