std::ranges::stride_view<V>::iterator
From cppreference.com
< cpp | ranges | stride view
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Ranges library
(C++23)(C++23)
(C++26)(C++26)
(C++23)(C++23)
(C++26)(C++26)
(C++26)(C++26)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)
(C++23)(C++23)
(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
std::ranges::stride_view
(C++26)
Iterator
template< bool Const >
class /*iterator*/
(since C++23) class /*iterator*/
(exposition only*)
The return type of stride_view::begin
, and of stride_view::end
when the underlying view V
is a common_range
.
The type /*iterator*/<true> is returned by the const-qualified overloads. The type /*iterator*/<false> is returned by the non-const-qualified overloads.
Contents
[edit] Member types
Member type
Definition
difference_type
ranges::range_difference_t <Base>
value_type
ranges::range_value_t <Base>
iterator_concept
- std::random_access_iterator_tag , if
Base
modelsrandom_access_range
. Otherwise, - std::bidirectional_iterator_tag , if
Base
modelsbidirectional_range
. Otherwise, - std::forward_iterator_tag , if
Base
modelsforward_range
. Otherwise, - std::input_iterator_tag .
iterator_category
(present only if
Base
modelsforward_range
)
Let C
denote the type iterator_traits<iterator_t<Base>>::iterator_category.
- std::random_access_iterator_tag , if
C
models std::derived_from <std::random_access_iterator_tag >. -
C
otherwise.
[edit] Data members
Member object
Definition
current_
(private)
ranges::iterator_t <Base>, holds an iterator to the current element.(exposition-only member object*)
end_
(private)
ranges::sentinel_t <Base>, holds a sentinel to the end.(exposition-only member object*)
stride_
(private)
ranges::range_difference_t <Base>, holds the stride value.(exposition-only member object*)
missing_
(private)
ranges::range_difference_t <Base>, usually holds the result of ranges::advance (current_, stride_, end_).(exposition-only member object*)
[edit] Member functions
[edit] Non-member functions
compares the underlying iterators
(function)
(function)
(C++23)
(function)
[edit] Example
This section is incomplete
Reason: no example
Reason: no example
[edit] References
- C++23 standard (ISO/IEC 14882:2024):
- 26.7.31.3 Class template stride_view::iterator [range.stride.iterator]