std::ranges::join_view<V>:: sentinel <Const>:: sentinel
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 | ||||
| Sentinel | ||||
|
join_view::
sentinel
::
sentinel
|
||||
|
/*sentinel*/
(
)
=
default
;
|
(1) | (C++20以降) |
|
constexpr
explicit
/*sentinel*/
(
Parent
&
parent
)
;
|
(2) | (C++20以降) |
|
constexpr
/*sentinel*/
(
/*sentinel*/
<
!
Const
>
i
)
requires Const
&&
|
(3) | (C++20以降) |
センチネルを構築します。
1)
デフォルトコンストラクタ。
Value-initializes
基盤となるセンチネルを値初期化します。
3)
/*sentinel*/
<
false
>
から
/*sentinel*/
<
true
>
への変換。基盤となるセンチネル
end_
を
std
::
move
(
i.
end_
)
でムーブ構築する。
パラメータ
| parent | - | (const修飾されている可能性のある) ranges::join_view |
| i | - | /*sentinel*/ < false > |
例
|
このセクションは不完全です
理由: 例がありません |