std::unordered_set<Key,Hash,KeyEqual,Allocator>::swap
From cppreference.com
< cpp | container | unordered set
| void swap( unordered_set& other ); |
(since C++11) (until C++17) |
|
void swap( unordered_set& other ) noexcept(/* see below */); |
(since C++17) (constexpr since C++26) |
|
Exchanges the contents of the container with those of other. Does not invoke any move, copy, or swap operations on individual elements.
All iterators and references remain valid. The end() iterator is invalidated.
Hash and KeyEqual must be Swappable, and objects of these types are exchanged using unqualified calls to non-member swap.
If std::allocator_traits<allocator_type>::propagate_on_container_swap::value is true, then the allocators are exchanged using an unqualified call to non-member swap. Otherwise, they are not swapped (and if get_allocator() != other.get_allocator(), the behavior is undefined).
Contents |
[edit] Parameters
| other | - | container to exchange the contents with |