std::ranges::elements_view<V,F>::iterator<Const>::operator++,--,+=,-=
constexpr /*iterator*/& operator++(); | (1) | (since C++20) |
constexpr void operator++( int ); | (2) | (since C++20) |
constexpr /*iterator*/ operator++( int ) requires ranges::forward_range<Base>; | (3) | (since C++20) |
constexpr /*iterator*/& operator--() requires ranges::bidirectional_range<Base>; | (4) | (since C++20) |
constexpr /*iterator*/ operator--( int ) requires ranges::bidirectional_range<Base>; | (5) | (since C++20) |
constexpr /*iterator*/& operator+=( difference_type n ) requires ranges::random_access_range<Base>; | (6) | (since C++20) |
constexpr /*iterator*/& operator-=( difference_type n ) requires ranges::random_access_range<Base>; | (7) | (since C++20) |
Инкрементирует или декрементирует итератор.
Пусть current_ — это базовый итератор.
1) Эквивалентно
++current_; return *this;
2) Эквивалентно
++current_;
3) Эквивалентно
auto tmp = *this; ++*this; return tmp;
4) Эквивалентно
--current_; return *this;
5) Эквивалентно
auto tmp = *this; --*this; return tmp;
6) Эквивалентно
current_ += n; return *this;
7) Эквивалентно
current_ -= n; return *this;
Параметры
| n | - | смещение относительно текущего местоположения |
Возвращаемое значение
1,4,6,7)
*this
2) (ничего)
3,5) копия
*this , которая была сделана до изменения
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/elements_view/iterator/operator_arith