std::ranges::adjacent_view<V,N>::iterator<Const>::operator++,--,+=,-=

来自cppreference.com
< cpp‎ | ranges‎ | adjacent view‎ | iterator
 
 
范围库
范围访问
范围转换器
(C++23)
范围原语



悬垂迭代器处理
范围概念
视图

范围工厂
适配器
范围生成器
范围适配器对象
范围适配器闭包对象
辅助项
 
std::ranges::adjacent_view
成员函数
迭代器
成员函数
adjacent_view::iterator::operator++
adjacent_view::iterator::operator++(int)
adjacent_view::iterator::operator--
adjacent_view::iterator::operator--(int)
adjacent_view::iterator::operator+=
adjacent_view::iterator::operator-=
(C++23)(C++23)(C++23)(C++23)(C++23)(C++23)
非成员函数
哨兵
成员函数
非成员函数
 
constexpr /*iterator*/& operator++();
(1) (C++23 起)
constexpr /*iterator*/ operator++( int );
(2) (C++23 起)
constexpr /*iterator*/& operator--()
  requires ranges::bidirectional_range<Base>;
(3) (C++23 起)
constexpr /*iterator*/ operator--( int )
  requires ranges::bidirectional_range<Base>;
(4) (C++23 起)
constexpr /*iterator*/& operator+=( difference_type n )
  requires ranges::random_access_range<Base>;
(5) (C++23 起)
constexpr /*iterator*/& operator-=( difference_type n )
  requires ranges::random_access_range<Base>;
(6) (C++23 起)

递增或递减迭代器。

current_ 为底层迭代器数组。

1) 等价于:
for (auto& i : current_)
    std::ranges::next(i);
return *this;
如果在调用之前,current_.back() 不可递增,则行为未定义。
2) 等价于:
auto tmp = *this;
++*this;
return tmp;
3) 等价于:
for (auto& i : current_)
    std::ranges::prev(i);
return *this;
如果调用之前,current_.front() 不可递增,则行为未定义。
4) 等价于:
auto tmp = *this;
--*this;
return tmp;
5) 等价于:
for (auto& i : current_)
    i += n;
return *this;
如果调用之前,current_.back() + n 无良定义,则行为未定义。
6) 等价于:
for (auto& i : current_)
    i -= n;
return *this;
如果调用之前,current_.front() - n 无良定义,则行为未定义。

参数

n - 相对于当前位置的偏移量

返回值

1,3,5,6) *this
2,4) *this 被修改前的拷贝。

示例

#include <cassert>
#include <list>
#include <ranges>
#include <utility>
#include <vector>
 
[[nodiscard]]
bool operator== (std::pair<int&, int&> x, std::pair<int, int> y)
{
    return x.first == y.first and x.second == y.second;
}
 
int main()
{
    {
        auto v = std::vector{0, 1, 2, 3, 4, 5};
        auto i = (v | std::views::pairwise).begin();
        assert((*i == std::pair{0, 1}));
        ++i;                            // 重载 (1)
        assert((*i == std::pair{1, 2}));
        --i;                            // 重载 (3)
        assert((*i == std::pair{0, 1}));
        i += 2;                         // 重载 (5)
        assert((*i == std::pair{2, 3}));
        i -= 2;                         // 重载 (6)
        assert((*i == std::pair{0, 1}));
    }
    {
        auto v = std::list{0, 1, 2, 3, 4, 5};
        auto i = (v | std::views::pairwise).begin();
        assert((*i == std::pair{0, 1}));
        ++i;                            // 重载 (1)
        assert((*i == std::pair{1, 2}));
        --i;                            // 重载 (3)
        assert((*i == std::pair{0, 1}));
//      i += 2; // Error: v is not a random_access_range; 重载 (5)
//      i -= 2; // Error: v is not a random_access_range; 重载 (6)
    }
}

参阅

进行迭代器算数
(公开成员函数)