Assignment operators
Synopses
Declared in <bslstl_multiset.h>
Assign to this object the value and comparator of rhs.
multiset<KEY, COMPARATOR, ALLOCATOR>&
operator=(multiset const& rhs);
Move‐assign from the specified rhs object.
multiset<KEY, COMPARATOR, ALLOCATOR>&
operator=(BloombergLP::bslmf::MovableRef<multiset> rhs) noexcept(/* see-below */);
Assign to this object the contents of values.
multiset<KEY, COMPARATOR, ALLOCATOR>&
operator=(std::initializer_list<KEY> values);
Return Value
reference providing modifiable access to this multiset
Parameters
Name |
Description |
rhs |
multiset to copy‐assign from |
values |
initializer list of elements to assign |
Created with MrDocs