std::ranges::stride_view<V>:: iterator <Const>:: iterator
/*iterator*/
(
)
requires std:: 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 an iterator .
-
current_
with ranges:: iterator_t < Base > ( ) , -
end_
with ranges:: sentinel_t < Base > ( ) , -
stride_
with 0 , -
missing_
with 0 .
-
current_
with std :: move ( current ) , -
end_
with ranges:: end ( parent - > base_ ) , -
stride_
with parent - > stride_ , -
missing_
with missing .
Parameters
i | - | an /*iterator*/ < false > |
Example
This section is incomplete
Reason: no example |