Namespaces
Variants

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

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

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

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

Construye un centinela.

1) Constructor por defecto. Inicializa por valor la tupla subyacente de centinelas end_ .
2) Conversión de /*sentinel*/ < false > a /*sentinel*/ < true > . Construye por movimiento la tupla subyacente de centinelas end_ con std :: move ( i. end_ ) .

Parámetros

i - a /*sentinel*/ < false >

Ejemplo