Namespaces
Variants

std::ranges::zip_transform_view<F,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 < /*zentinel*/ < false > , /*zentinel*/ < Const >> ;
(2) (C++23부터)
constexpr explicit /*sentinel*/ ( /*zentinel*/ < Const > inner ) ;
(3) ( 설명 전용* )

센티널을 생성합니다.

1) 기본 생성자. 기본 초기화 를 통해 내부 센티널 객체 inner_ 를 초기화합니다.
2) /*sentinel*/ < false > 에서 /*sentinel*/ < true > 로의 변환. 내부 객체 inner_ std :: move ( i. inner_ ) 로 이동 생성합니다.
3) Value-initializes the underlying object inner_ with inner . 이 생성자는 사용자가 접근할 수 없습니다.

매개변수

i - a /*sentinel*/ < false >
inner - zentinel < Const > 타입의 기본 객체

예제