std::basic_const_iterator<Iter>::operator++,--,+=,-=
Min standard notice:
Increments or decrements the iterator, by applying the corresponding operation on the underlying iterator.
# Declarations
constexpr basic_const_iterator& operator++();
(since C++23)
constexpr void operator++(int);
(since C++23)
constexpr basic_const_iterator operator++(int)
requires std::forward_iterator<Iter>;
(since C++23)
constexpr basic_const_iterator& operator--()
requires std::bidirectional_iterator<Iter>;
(since C++23)
constexpr basic_const_iterator operator--(int)
requires std::bidirectional_iterator<Iter>;
(since C++23)
constexpr basic_const_iterator& operator+=( difference_type n )
requires std::random_access_iterator<Iter>;
(since C++23)
constexpr basic_const_iterator& operator-=( difference_type n )
requires std::random_access_iterator<Iter>;
(since C++23)
# Example
This section is incompleteReason: no example