Namespaces
Variants
Views
Actions

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_;.

[edit] Parameters

(none)

[edit] Example