constexpr const ranges::iterator_t<Base>& base() const& noexcept; | (1) | (since C++23) |
constexpr ranges::iterator_t<Base> base() &&; | (2) | (since C++23) |
Returns the underlying iterator. Let current_
be the underlying iterator.
return current_;
.return std::move(current_);
.(none).
An iterator to the current element in enumerate_view
.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/base