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