std::ranges::transform_view<V,F>::iterator<Const>::operator++,--,+=,-=
constexpr /*iterator*/& operator++(); |
(1) | (с C++20) |
constexpr void operator++( int ); |
(2) | (с C++20) |
constexpr /*iterator*/ operator++( int ) requires ranges::forward_range<Base>; |
(3) | (с C++20) |
constexpr /*iterator*/& operator--() requires ranges::bidirectional_range<Base>; |
(4) | (с C++20) |
constexpr /*iterator*/ operator--( int ) requires ranges::bidirectional_range<Base>; |
(5) | (с C++20) |
constexpr /*iterator*/& operator+=( difference_type n ) requires ranges::random_access_range<Base>; |
(6) | (с C++20) |
constexpr /*iterator*/& operator-=( difference_type n ) requires ranges::random_access_range<Base>; |
(7) | (с 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
3,5) копия
*this, созданная перед изменением
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/transform_view/iterator/operator_arith