Defined in header <utility> | ||
---|---|---|
template< class T1, class T2 > void swap( pair<T1,T2>& x, pair<T1,T2>& y ) noexcept(/* see below */); | (since C++11) (until C++20) | |
template< class T1, class T2 > constexpr void swap( pair<T1,T2>& x, pair<T1,T2>& y ) noexcept(/* see below */); | (since C++20) |
Swaps the contents of x
and y
. Equivalent to x.swap(y)
.
This function does not participate in overload resolution unless | (since C++17) |
x, y | - | pairs whose contents to swap |
(none).
noexcept
specification: noexcept(noexcept(x.swap(y)))
swaps the values of two objects (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/pair/swap2