| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
| Member functions | ||||
(C++26) | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
| Non-member functions | ||||
operator==(std::default_sentinel_t) operator==(stride_view::iterator) operator<(stride_view::iterator) operator>(stride_view::iterator) operator<=(stride_view::iterator) operator>=(stride_view::iterator) operator<=>(stride_view::iterator) | ||||
friendconstexprbool operator==(const/*iterator*/& x,std::default_sentinel_t); | (1) | (since C++23) |
friendconstexprbool operator==(const/*iterator*/& x,const/*iterator*/& y) requiresstd::equality_comparable<ranges::iterator_t<Base>>; | (2) | (since C++23) |
friendconstexprbool operator<(const/*iterator*/& x,const/*iterator*/& y) requiresranges::random_access_range<Base>; | (3) | (since C++23) |
friendconstexprbool operator>(const/*iterator*/& x,const/*iterator*/& y) requiresranges::random_access_range<Base>; | (4) | (since C++23) |
friendconstexprbool operator<=(const/*iterator*/& x,const/*iterator*/& y) requiresranges::random_access_range<Base>; | (5) | (since C++23) |
friendconstexprbool operator>=(const/*iterator*/& x,const/*iterator*/& y) requiresranges::random_access_range<Base>; | (6) | (since C++23) |
friendconstexprauto operator<=>(const/*iterator*/& x,const/*iterator*/& y) requiresranges::random_access_range<Base> and | (7) | (since C++23) |
Compares the underlying iterators/sentinels.
Letcurrent_ be the underlying iterator, andend_ be the underlying sentinel.
These functions are not visible to ordinaryunqualified orqualified lookup, and can only be found byargument-dependent lookup whenstd::ranges::stride_view::iterator<Const> is an associated class of the arguments.
The!= operator issynthesized fromoperator==.
| x, y | - | iterators to compare |
result of comparison
| This section is incomplete Reason: no example |