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