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