constexpr auto operator*() const; | (since C++23) |
Returns the current element in the enumerate_view
.
Equivalent to: return reference-type(pos_, *current_);
.
(none).
The current element.
(C++23) | accesses an element by index (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/operator*