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