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