Namespaces
Variants

std::ranges::join_view<V>:: sentinel <Const>:: sentinel

From cppreference.net
Ranges library
Range adaptors
/*sentinel*/ ( ) = default ;
(1) (C++20以降)
constexpr explicit /*sentinel*/ ( Parent & parent ) ;
(2) (C++20以降)
constexpr /*sentinel*/ ( /*sentinel*/ < ! Const > i )

requires Const &&

std:: convertible_to < ranges:: sentinel_t < V > , ranges:: sentinel_t < Base >> ;
(3) (C++20以降)

センチネルを構築します。

1) デフォルトコンストラクタ。 Value-initializes 基盤となるセンチネルを値初期化します。
2) 基盤となるセンチネル end_ ranges:: end ( parent. base_ ) で初期化します。
3) /*sentinel*/ < false > から /*sentinel*/ < true > への変換。基盤となるセンチネル end_ std :: move ( i. end_ ) でムーブ構築する。

パラメータ

parent - (const修飾されている可能性のある) ranges::join_view
i - /*sentinel*/ < false >