| Iterator concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Iterator primitives | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Algorithm concepts and utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Indirect callable concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Common algorithm requirements | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Iterator adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
| Non-member functions | ||||
(C++20) | ||||
iter_swap (C++20) | ||||
(C++14) |
template<std::indirectly_swappable<Iter> Iter2> friendconstexprvoid iter_swap(const reverse_iterator& x, | (since C++20) | |
Swaps the objects pointed to by two adjusted underlying iterators.
Equivalent toauto tmp_x= x.base();
auto tmp_y= y.base();
ranges::iter_swap(--tmp_x,--tmp_y);.
This function template is not visible to ordinaryunqualified orqualified lookup, and can only be found byargument-dependent lookup whenstd::reverse_iterator<Iter> is an associated class of the arguments.
Contents |
| x, y | - | reverse iterators to the elements to swap |
Constant.
std::is_nothrow_copy_constructible_v<Iter>&&
std::is_nothrow_copy_constructible_v<Iter2>&&
noexcept(ranges::iter_swap(--std::declval<Iter&>(),--std::declval<Iter2&>()))
#include <iostream>#include <iterator>#include <list>#include <vector> int main(){std::vector v{1,2,3};std::list l{4,5,6}; std::reverse_iterator<std::vector<int>::iterator> r1{v.rbegin()};std::reverse_iterator<std::list<int>::iterator> r2{l.rbegin()}; std::cout<<*r1<<' '<<*r2<<'\n'; iter_swap(r1, r2);// ADL std::cout<<*r1<<' '<<*r2<<'\n';}
Output:
3 66 3
| swaps the values of two objects (function template)[edit] | |
| swaps two ranges of elements (function template)[edit] | |
| swaps the elements pointed to by two iterators (function template)[edit] | |
(C++20) | swaps the values referenced by two dereferenceable objects (customization point object)[edit] |
(C++20) | swaps the objects pointed to by two underlying iterators (function template)[edit] |