std::ranges::cartesian_product_view<First, Vs...>:: iterator <Const>:: iterator
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
| Member functions | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
|
cartesian_product_view::
iterator
::
iterator
|
||||
| Non-member functions | ||||
|
/*iterator*/
(
)
=
default
;
|
(1) | (seit C++23) |
|
constexpr
/*iterator*/
(
/*iterator*/
<
!
Const
>
i
)
requires Const
&&
(
|
(2) | (seit C++23) |
|
private
:
constexpr
/*iterator*/
(
|
(3) | ( Nur zur Darstellung* ) |
Konstruiere einen Iterator.
parent_
mit
nullptr
und
standardinitialisiert
den
current_
.
parent_
mit
i.
parent_
und
current_
mit
std
::
move
(
i.
current_
)
.
parent_
mit
std::
addressof
(
parent
)
und
current_
mit
std
::
move
(
current
)
.
Parameter
| i | - | ein /*iterator*/ < false > |
Beispiel
|
Dieser Abschnitt ist unvollständig
Grund: Kein Beispiel |