std::ranges::join_view<V>:: iterator <Const>:: operator*,->
From cppreference.net
C++
Ranges library
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
std::ranges::join_view
| Member functions | ||||
| Deduction guides | ||||
| Iterator | ||||
|
join_view::
iterator
::operator*
join_view:: iterator ::operator-> |
||||
| Sentinel | ||||
|
constexpr
decltype
(
auto
)
operator
*
(
)
const
;
|
(1) | (depuis C++20) |
|
constexpr
InnerIter operator
-
>
(
)
const
requires /*has-arrow*/ < InnerIter > && std:: copyable < InnerIter > ; |
(2) | (depuis C++20) |
Retourne l'élément vers lequel l'itérateur sous-jacent
inner_
pointe.
1)
Équivalent à
return
*
inner_
;
.
2)
Équivalent à
return
inner_
;
.
Paramètres
(aucun)
Valeur de retour
L'élément actuel.
Exemple
|
Cette section est incomplète
Raison : aucun exemple |