Defined in header <utility> | ||
---|---|---|
template< class T1, class T2 > void swap( pair<T1,T2>& lhs, pair<T1,T2>& rhs ) noexcept(/* see below */); | (since C++11) |
Swaps the contents of lhs
and rhs
. Equivalent to lhs.swap(rhs)
.
This function does not participate in overload resolution unless | (since C++17) |
lhs, rhs | - | pairs whose contents to swap |
(none).
noexcept
specification: noexcept(noexcept(lhs.swap(rhs)))
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