| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
| Member functions | ||||
(C++26) | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
stride_view::iterator::iterator | ||||
| Non-member functions | ||||
/*iterator*/() requiresstd::default_initializable<ranges::iterator_t<Base>>=default; | (1) | (since C++23) |
constexpr/*iterator*/(/*iterator*/<!Const> i) requires Const and | (2) | (since C++23) |
private: constexpr/*iterator*/(/*Parent*/& parent, | (3) | (exposition only*) |
Constructs aniterator.
current_ withranges::iterator_t<Base>(),end_ withranges::sentinel_t<Base>(),stride_ with0,missing_ with0.current_ withstd::move(current),end_ withranges::end(parent->base_),stride_ withparent->stride_,missing_ withmissing.| i | - | an/*iterator*/<false> |
| This section is incomplete Reason: no example |