On this page
std::ranges::stride_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 std::move(current_);
.
2) Equivalent to:
return current_;
.
Parameters
(none)
Example
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/stride_view/iterator/base