std::ranges::stride_view<V>::iterator<Const>::base
constexpr ranges::iterator_t<Base> base() &&; | (1) | (since C++23) |
constexpr const ranges::iterator_t<Base>& base() const& noexcept; | (2) | (since C++23) |
Возвращает базовый итератор. Пусть current_ — базовый итератор.
1) Эквивалентно:
return std::move(current_);.
2) Эквивалентно:
return current_;.Параметры
(нет)
Пример
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/stride_view/iterator/base