[#absl-swap-0fd] = xref:absl.adoc[absl]::swap :relfileprefix: ../ :mrdocs: Swaps the contents of two `node_hash_set` containers. == Synopsis Declared in `<absl/container/node_hash_set.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename T, typename H, typename E, typename A> void swap( xref:absl/node_hash_set.adoc[node_hash_set<T, H, E, A>]& x, xref:absl/node_hash_set.adoc[node_hash_set<T, H, E, A>]& y) noexcept(noexcept(x.swap(y))); ---- == Parameters [cols="1,4"] |=== | Name| Description | *x* | The first container to swap. | *y* | The second container to swap. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#