std::swap (3) - Linux Manuals
std::swap: std::swap
NAME
Synopsis
Defined in header <algorithm> (until C++11)
Defined in header <utility> (since C++11)
template< class T > (until C++11)
void swap( T& a, T& b );
template< class T > (since C++11)
void swap( T& a, T& b ) noexcept(/* see below */); (until C++20)
template< class T > (1) (since C++20)
constexpr void swap( T& a, T& b ) noexcept(/* see below */);
template< class T2, std::size_t N > (since C++11)
void swap( T2 (&a)[N], T2 (&b)[N]) noexcept(/* see below */); (2) (until C++20)
template< class T2, std::size_t N > (since C++20)
constexpr void swap( T2 (&a)[N], T2 (&b)[N]) noexcept(/* see below */);
Exchanges the given values.
1) Swaps the values a and b.
This overload does not participate in overload resolution unless std::is_move_constructible_v<T> && std::is_move_assignable_v<T> is true.
(since C++17)
2) Swaps the arrays a and b. In effect calls std::swap_ranges(a, a+N, b).
This overload does not participate in overload resolution unless std::is_swappable_v<T2> is true.
(since C++17)
Parameters
a, b - the values to be swapped
Type requirements
-
T must meet the requirements of MoveAssignable and MoveConstructible.
-
T2 must meet the requirements of Swappable.
Return value
(none)
Exceptions
1)
(none) (until C++11)
noexcept specification:
noexcept(
std::is_nothrow_move_constructible<T>::value && (since C++11)
std::is_nothrow_move_assignable<T>::value
)
2)
noexcept specification:
noexcept(noexcept(swap(*a, *b))) (until C++17)
The lookup for the identifier swap in the exception specification finds this function template in addition to anything found by the usual lookup rules, making the exception specification equivalent to C++17 std::is_nothrow_swappable.
noexcept specification: (since C++17)
noexcept(std::is_nothrow_swappable_v<T2>)
Complexity
1) Constant
2) Linear in N
Specializations
std::swap may be specialized_in_namespace_std for program-defined types, but such specializations are not found by ADL (the namespace std is not the associated namespace for the program-defined type). (until C++20)
The expected way to make a program-defined type swappable is to provide a non-member function swap in the same namespace as the type: see Swappable for details.
The following overloads are already provided by the standard library:
std::swap(std::pair) specializes the std::swap algorithm
(C++11)
std::swap(std::tuple) specializes the std::swap algorithm
(C++11)
std::swap(std::shared_ptr) specializes the std::swap algorithm
(C++11)
std::swap(std::weak_ptr) specializes the std::swap algorithm
(C++11)
std::swap(std::unique_ptr) specializes the std::swap algorithm
(C++11)
std::swap(std::function) specializes the std::swap algorithm
(C++11)
std::swap(std::basic_string) (function template)
std::swap(std::array) specializes the std::swap algorithm