Difference between revisions of "cpp/algorithm/swap"
From cppreference.com
m |
m (Text replace - "{{noexcept" to "{{unreviewed noexcept") |
||
Line 34: | Line 34: | ||
{{rev|until=c++11|(none)}} | {{rev|until=c++11|(none)}} | ||
{{rev|since=c++11| | {{rev|since=c++11| | ||
− | {{noexcept| | + | {{unreviewed noexcept| |
std::is_nothrow_move_constructible<T>::value && | std::is_nothrow_move_constructible<T>::value && | ||
std::is_nothrow_move_assignable<T>::value | std::is_nothrow_move_assignable<T>::value | ||
Line 40: | Line 40: | ||
}}{{rev end}} | }}{{rev end}} | ||
@2@ {{rev begin}} | @2@ {{rev begin}} | ||
− | {{rev|until=c++17|{{noexcept|noexcept(swap(*a, *b))}}}} | + | {{rev|until=c++17|{{unreviewed noexcept|noexcept(swap(*a, *b))}}}} |
− | {{rev|since=c++17|{{noexcept|std::is_nothrow_swappable_v<T2>}}}} | + | {{rev|since=c++17|{{unreviewed noexcept|std::is_nothrow_swappable_v<T2>}}}} |
{{rev end}} | {{rev end}} | ||
Revision as of 11:57, 31 March 2017
(until C++11) (since C++11) |
||
template< class T > void swap( T& a, T& b ); |
(1) | |
template< class T2, std::size_t N > void swap( T2 (&a)[N], T2 (&b)[N]); |
(2) | (since C++11) |
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)Contents |
Parameters
a, b | - | the values to be swapped |
Type requirements |
Return value
(none)
Exceptions
1)
(none) | (until C++11) |
noexcept specification:
noexcept( std::is_nothrow_move_constructible<T>::value && |
(since C++11) |
2)
noexcept specification:
noexcept(noexcept(swap(*a, *b))) |
(until C++17) |
noexcept specification:
noexcept(std::is_nothrow_swappable_v<T2>) |
(since C++17) |
Complexity
1) Constant
2) Linear in N
Specializations
std::swap may be specialized in namespace std for user-defined types, but such specializations are not found by ADL (the namespace std is not the associated namespace for the user-defined type). The expected way to make a user-defined type swappable is to provide a non-member function swap in the same namespace as the type: see Template:concept for details.
The following overloads are already provided by the standard library:
(C++11) |
specializes the std::swap algorithm (function template) |
(C++11) |
specializes the std::swap algorithm (function template) |
(C++11) |
specializes the std::swap algorithm (function template) |
(C++11) |
specializes the std::swap algorithm (function template) |
(C++11) |
specializes the std::swap algorithm (function template) |
(C++11) |
specializes the std::swap algorithm (function template) |
specializes the std::swap algorithm (function template) | |
(C++11) |
specializes the std::swap algorithm (function template) |
specializes the std::swap algorithm (function template) | |
(C++11) |
specializes the std::swap algorithm (function template) |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
(C++11) |
specializes the std::swap algorithm (function template) |
specializes the std::swap algorithm (function template) | |
(C++11) |
specializes the std::swap algorithm (function template) |
(C++11) |
specializes the std::swap algorithm (function template) |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
specializes the std::swap algorithm (function template) | |
(C++11) |
specializes the std::swap algorithm (function template) |
specializes the std::swap algorithm (function template) | |
({{{1}}}) |
specializes the std::swap algorithm (function) |
(C++11) |
specializes the std::swap algorithm (function template) |
(C++11) |
specializes the std::swap algorithm (function template) |
specializes the std::swap algorithm (function template) | |
(C++17) |
specializes the std::swap algorithm (function template) |
(C++17) |
specializes the std::swap algorithm (function) |
(C++17) |
specializes the std::swap algorithm (function template) |
(C++17) |
specializes the std::swap algorithm (function) |
Example
Run this code
Output:
5 3 3 5
See also
swaps the elements pointed to by two iterators (function template) | |
swaps two ranges of elements (function template) |