| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
| Member functions | ||||
(C++26) | ||||
| Deduction guides | ||||
| Nested classes | ||||
| Iterator | ||||
enumerate_view::iterator::operator++ enumerate_view::iterator::operator++(int) enumerate_view::iterator::operator-- enumerate_view::iterator::operator--(int) enumerate_view::iterator::operator+= enumerate_view::iterator::operator-= | ||||
| Sentinel | ||||
constexpr/*iterator*/& operator++(); | (1) | (since C++23) |
constexprvoid operator++(int); | (2) | (since C++23) |
constexpr/*iterator*/ operator++(int) requiresranges::forward_range<Base>; | (3) | (since C++23) |
constexpr/*iterator*/& operator--() requiresranges::bidirectional_range<Base>; | (4) | (since C++23) |
constexpr/*iterator*/ operator--(int) requiresranges::bidirectional_range<Base>; | (5) | (since C++23) |
constexpr/*iterator*/& operator+=( difference_type n) requiresranges::random_access_range<Base>; | (6) | (since C++23) |
constexpr/*iterator*/& operator-=( difference_type n) requiresranges::random_access_range<Base>; | (7) | (since C++23) |
Increments or decrements theiterator.
Letcurrent_ be the underlying iterator andpos_ be the underlying index.
| n | - | position relative to current location |
(C++23) | performs iterator arithmetic (function) |