Namespaces
Variants
Views
Actions

std::swap(std::pair)

From cppreference.com
< cpp‎ | utility‎ | pair
Revision as of 12:43, 1 May 2017 by T. Canens (Talk | contribs)

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
 
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).

Contents

Parameters

lhs, rhs - pairs whose contents to swap

Return value

(none)

Exceptions

noexcept specification:  
noexcept(noexcept(lhs.swap(rhs)))

See also

swaps the values of two objects
(function template) [edit]