Assignment operators
Declared in <absl/container/linked_hash_set.h>
Copy assignment operator.
linked_hash_set&
operator=(linked_hash_set const& other);
» more...
Move assignment operator.
linked_hash_set&
operator=(linked_hash_set&& other) noexcept;
» more...
Replaces the contents with the elements from an initializer list.
linked_hash_set&
operator=(std::initializer_list<key_type> values);
» more...
A reference to this set.
| Name | Description |
|---|---|
| other | The set to copy from. |
| values | The initializer list of elements. |