Namespaces
Variants

operator- (ranges::zip_transform_view:: sentinel )

From cppreference.net
Ranges library
Range adaptors
template < bool OtherConst >

requires std:: sized_sentinel_for < /*zentinel*/ < Const > , /*ziperator*/ < OtherConst >>
friend constexpr ranges:: range_difference_t < /*maybe-const*/ < OtherConst, /*InnerView*/ >>

operator - ( const /*iterator*/ < OtherConst > & x, const /*sentinel*/ & y ) ;
(1) (desde C++23)
template < bool OtherConst >

requires std:: sized_sentinel_for < /*zentinel*/ < Const > , /*ziperator*/ < OtherConst >>
friend constexpr ranges:: range_difference_t < /*maybe-const*/ < OtherConst, /*InnerView*/ >>

operator - ( const /*sentinel*/ & y, const /*iterator*/ < OtherConst > & x ) ;
(2) (desde C++23)

Calcula la distancia entre el iterador subyacente de x y el centinela subyacente de y .

Estas plantillas de función no son visibles para la búsqueda unqualified o qualified ordinaria, y solo pueden ser encontradas mediante argument-dependent lookup cuando zip_transform_view:: sentinel es una clase asociada de los argumentos.

Parámetros

x - un iterator
y - un sentinel

Valor de retorno

Sea inner_ el iterador o centinela subyacente respectivamente.

1) x. inner_ - y. inner_
2) y. inner_ - x. inner_