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) |
Increments or decrements the iterator.
Let current_
be the underlying iterator.
++current_; return *this;
++current_;
auto tmp = *this; ++*this; return tmp;
--current_; return *this;
auto tmp = *this; --*this; return tmp;
current_ += n; return *this;
current_ -= n; return *this;
n | - | position relative to current location |
*this
*this
that was made before the change
© 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