std::ranges::cartesian_product_view<First, Vs...>:: iterator <Const>:: operator*
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
| Member functions | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
|
cartesian_product_view::
iterator
::operator*
|
||||
| Non-member functions | ||||
|
constexpr
auto
operator
*
(
)
const
;
|
(seit C++23) | |
Gibt das aktuelle Element in der
cartesian_product_view
zurück. Entspricht:
return
/*tuple-transform*/
(
[
]
(
auto
&
i
)
-
>
decltype
(
auto
)
{
return
*
i
;
}
,
current_
)
;
.
Inhaltsverzeichnis |
Parameter
(keine)
Rückgabewert
Das aktuelle Element.
Beispiel
|
Dieser Abschnitt ist unvollständig
Grund: Kein Beispiel |
Siehe auch
|
(C++23)
|
greift auf ein Element per Index zu
(öffentliche Elementfunktion) |