Swaps the contents of two node_hash_set containers.
Declared in <absl/container/node_hash_set.h>
template<
typename T,
typename H,
typename E,
typename A>
void
swap(
node_hash_set<T, H, E, A>& x,
node_hash_set<T, H, E, A>& y) noexcept(noexcept(x.swap(y)));
| Name | Description |
|---|---|
| x | The first container to swap. |
| y | The second container to swap. |