On this page
std::ranges::enumerate_view<V>::iterator<Const>::base
|
(1) | (since C++23) |
|
(2) | (since C++23) |
Returns the underlying iterator. Let current_
be the underlying iterator.
1) Equivalent to:
return current_;
.
2) Equivalent to:
return std::move(current_);
.
Parameters
(none)
Return value
An iterator to the current element in enumerate_view
.
Example
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/base