Assignment operators
Declared in <bdlc_flathashset.h>
Assign to this object the value of the specified rhs set.
FlatHashSet<KEY, HASH, EQUAL>&
operator=(FlatHashSet const& rhs);
» more...
Assign to this object by moving from the specified rhs set.
FlatHashSet<KEY, HASH, EQUAL>&
operator=(bslmf::MovableRef<FlatHashSet> rhs);
» more...
Assign to this object from the specified initializer list.
FlatHashSet<KEY, HASH, EQUAL>&
operator=(bsl::initializer_list<KEY> values);
» more...
modifiable reference to this set
| Name | Description |
|---|---|
| rhs | set to copy-assign from |
| values | initializer list of elements to assign |