[#absl-swap-0a] = xref:absl.adoc[absl]::swap :relfileprefix: ../ :mrdocs: Swaps the contents of two inlined vectors. == Synopsis Declared in `<absl/container/inlined_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename T, size_t N, typename A> void swap( xref:absl/InlinedVector.adoc[absl::InlinedVector<T, N, A>]& a, xref:absl/InlinedVector.adoc[absl::InlinedVector<T, N, A>]& b) noexcept(noexcept(a.swap(b))); ---- == Parameters [cols="1,4"] |=== | Name| Description | *a* | The first inlined vector. | *b* | The second inlined vector. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#