Namespaces
Variants
Views
Actions

std::reverse_iterator<Iter>::iter_swap

From cppreference.com
< cpp‎ | iterator‎ | reverse iterator
Revision as of 14:28, 12 April 2021 by Space Mission (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
Iterator library
Iterator concepts
Iterator primitives
Algorithm concepts and utilities
Indirect callable concepts
Common algorithm requirements
(C++20)
(C++20)
(C++20)
Utilities
(C++20)
Iterator adaptors
Range access
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 
 
template< std::indirectly_swappable<Iter> Iter2>

  friend constexpr void
    std::iter_swap( const std::reverse_iterator& x,

                    const std::reverse_iterator<Iter2>& y ) noexcept(/*see below*/);
(since C++20)

Swaps the objects pointed to by two adjusted underlying iterators. A call to this function is expression-equivalent to:

auto tmp_x = x.base();
auto tmp_y = y.base();
ranges::iter_swap(--tmp_x, --tmp_y);

Contents

Parameters

x, y - reverse iterators to the elements to swap

Return value

(none)

Complexity

constant

Exception

The expression in noexcept is equivalent to:

std::is_nothrow_copy_constructible_v<Iter> &&
std::is_nothrow_copy_constructible_v<Iter2> &&
noexcept(ranges::iter_swap(--std::declval<Iter&>(), --std::declval<Iter2&>()))

Example

#include <iostream>
#include <iterator>
#include <list>
#include <vector>
 
int main()
{
    std::vector v {1, 2, 3};
    std::list   l {4, 5, 6};
 
    auto r1 = v.rbegin();
    auto r2 = l.rbegin();
 
    std::cout << *r1 << ' ' << *r2 << '\n';
 
    iter_swap(r1, r2);
 
    std::cout << *r1 << ' ' << *r2 << '\n';
}

Output:

3 6
6 3

See also

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]