| Iterator concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Iterator primitives | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Algorithm concepts and utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Indirect callable concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Common algorithm requirements | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Iterator adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
| Non-member functions | ||||
(until C++20)(C++20) | ||||
(C++20) | ||||
(C++20) | ||||
(C++20) | ||||
iter_swap (C++20) | ||||
(C++11) |
template<std::indirectly_swappable<Iter> Iter2> friendconstexprvoid iter_swap(const move_iterator& x, | (since C++20) | |
Swaps the objects pointed to by two underlying iterators.
Equivalent toranges::iter_swap(x.base(), y.base());.
This function template is not visible to ordinaryunqualified orqualified lookup, and can only be found byargument-dependent lookup whenstd::move_iterator<Iter> is an associated class of the arguments.
Contents |
| x, y | - | move iterators to the elements to swap |
Constant.
#include <iostream>#include <iterator>#include <string>#include <vector> int main(){std::vector<std::string> p{"AA","EE"}, q{"ⱯⱯ","ƎƎ"}; std::move_iterator<std::vector<std::string>::iterator> x=std::make_move_iterator(p.begin()), y=std::make_move_iterator(q.begin()); std::cout<<*x<<' '<<*y<<'\n'; iter_swap(x, y);// ADL std::cout<<*x<<' '<<*y<<'\n';}
Output:
AA ⱯⱯⱯⱯ AA
| 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 adjusted underlying iterators (function template)[edit] |