std::ranges::zip_view<Views...>:: iterator <Const>:: iterator
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
| Member functions | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
|
zip_view::
iterator
::
iterator
|
||||
| Non-member functions | ||||
| Sentinel | ||||
| Member functions | ||||
| Non-member functions | ||||
|
/*iterator*/
(
)
=
default
;
|
(1) | (since C++23) |
|
constexpr
/*iterator*/
(
/*iterator*/
<
!
Const
>
i
)
requires Const
&&
|
(2) | (since C++23) |
Construct an iterator.
current_
with
std
::
move
(
i.
current
)
.
This iterator also has a private constructor which is used by zip_view::begin and zip_view::end . This constructor is not accessible to users.
Parameters
| i | - | an /*iterator*/ < false > |
Example
|
This section is incomplete
Reason: no example |