std::unordered_map::operator=
From Cppreference
< cpp | container | unordered map
unordered_map& operator=( const unordered_map& other );
|
(1) | (C++11 feature) |
unordered_map& operator=( unordered_map&& other );
|
(2) | (C++11 feature) |
Replaces the contents of the container.
1) Copy assignment operator. Replaces the contents with a copy of the contents of other.
2) Move assignment operator. Replaces the contents with those of other using move semantics.
Contents |
[edit] Parameters
other | - | another container to be used as source |
[edit] Return value
*this
[edit] Complexity
This section is incomplete |
[edit] See also
|
constructs the unordered_map (public member function) |