Namespaces
Variants

std::ranges::zip_view<Views...>:: sentinel <Const>:: sentinel

From cppreference.net
Ranges library
Range adaptors
/*sentinel*/ ( ) = default ;
(1) (C++23以降)
constexpr /*sentinel*/ ( /*sentinel*/ < ! Const > i )

requires Const &&
( std:: convertible_to <
ranges:: sentinel_t < Views > ,

ranges:: sentinel_t < /*maybe-const*/ < Const, Views >>> && ... ) ;
(2) (C++23以降)

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

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

パラメータ

i - a /*sentinel*/ < false >