Spec-Zone.ru › C++

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

constexpr /*iterator*/& operator++();
(1) (since C++23)
constexpr void operator++( int );
(2) (since C++23)
constexpr /*iterator*/ operator++( int )
  requires ranges::forward_range<Base>;
(3) (since C++23)
constexpr /*iterator*/& operator--()
  requires ranges::bidirectional_range<Base>;
(4) (since C++23)
constexpr /*iterator*/ operator--( int )
  requires ranges::bidirectional_range<Base>;
(5) (since C++23)
constexpr /*iterator*/& operator+=( difference_type n )
  requires ranges::random_access_range<Base>;
(6) (since C++23)
constexpr /*iterator*/& operator-=( difference_type n )
  requires ranges::random_access_range<Base>;
(7) (since 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, сделанная до изменения

См. также

operator+operator-
(C++23)
выполняет арифметику итераторов
(функция)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/operator_arith

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API