std::ranges::enumerate_view<V>:: iterator <Const>:: index

From cppreference.com
Ranges library
Range adaptors
constexpr difference_type index ( ) const noexcept ;
(since C++23)

Returns the underlying index pos_ of the current element. Equivalent to: return pos_ ; .

Parameters

(none)

Example