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

来自cppreference.com
 
 
范围库
范围访问
范围转换器
(C++23)
范围原语



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

范围工厂
适配器
范围生成器
范围适配器对象
范围适配器闭包对象
辅助项
 
 
constexpr /*iterator*/& operator++();
(1) (C++23 起)
constexpr void operator++( int );
(2) (C++23 起)
constexpr /*iterator*/ operator++( int )
  requires ranges::forward_range<Base>;
(3) (C++23 起)
constexpr /*iterator*/& operator--()
  requires ranges::bidirectional_range<Base>;
(4) (C++23 起)
constexpr /*iterator*/ operator--( int )
  requires ranges::bidirectional_range<Base>;
(5) (C++23 起)
constexpr /*iterator*/& operator+=( difference_type n )
  requires ranges::random_access_range<Base>;
(6) (C++23 起)
constexpr /*iterator*/& operator-=( difference_type n )
  requires ranges::random_access_range<Base>;
(7) (C++23 起)

推进或回退迭代器

current_ 表示底层迭代器并令 pos_ 表示底层索引。

1) 等价于 ++current_; ++pos_; return *this;
2) 等价于 ++current_;
3) 等价于 auto tmp = *this; ++*this; return tmp;
4) 等价于 --current_; --pos_; return *this;
5) 等价于 auto tmp = *this; --*this; return tmp;
6) 等价于 current_ += n; pos_ += n; return *this;
7) 等价于 current_ -= n; pos_ -= n; return *this;

参数

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

返回值

1,4,6,7) *this
2) (无)
3,5) *this 改变之前的复制

参阅

实行迭代器算术运算
(函数)