iter_swap(std::move_iterator)
Min standard notice:
Swaps the objects pointed to by two underlying iterators.
# Declarations
template< std::indirectly_swappable<Iter> Iter2 >
friend constexpr void iter_swap( const move_iterator& x,
const std::move_iterator<Iter2>& y )
noexcept(/* see below */);
(since C++20)
# Parameters
x, y: move iterators to the elements to swap
# Example
#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';
}