|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
Helper items | |||||||||||||||||
|
template<bool Const> class/*iterator*/ | (since C++23) (exposition only*) | |
The return type ofenumerate_view::begin
, and ofenumerate_view::end
when the underlying viewV
is acommon_range
.
The type/*iterator*/<true> is returned by the const-qualified overloads. The type/*iterator*/<false> is returned by the non-const-qualified overloads.
Contents |
Member type | Definition |
Base (private) | const V ifConst istrue, otherwiseV .(exposition-only member type*) |
iterator_category | std::input_iterator_tag |
iterator_concept |
|
difference_type | ranges::range_difference_t<Base> |
value_type | std::tuple<difference_type,ranges::range_value_t<Base>> |
reference-type (private) | std::tuple<difference_type,ranges::range_reference_t<Base>> (exposition-only member type*) |
Member name | Definition |
current_ (private) | An iterator to the current element of typeranges::iterator_t<Base> (exposition-only member object*) |
pos_ (private) | A current index of typedifference_type (exposition-only member object*) |
constructs an iterator (public member function) | |
returns an iterator to current element (public member function) | |
returns current index (public member function) | |
accesses the element (public member function) | |
accesses an element by index (public member function) | |
advances or decrements the underlying iterator (public member function)[edit] |
(C++23) | compares the underlying iterators (function) |
(C++23) | performs iterator arithmetic (function) |
(C++23) | casts the result of dereferencing the underlying iterator to its associated rvalue reference type (function) |
This section is incomplete Reason: no example |
enumerate_view::iterator
[range.enumerate.iterator]