Namespaces
Variants

std::ranges::zip_view<Views...>:: iterator <Const>:: operator++,--,+=,-=

From cppreference.net
Ranges library
Range adaptors
constexpr /*iterator*/ & operator ++ ( ) ;
(1) (desde C++23)
constexpr void operator ++ ( int ) ;
(2) (desde C++23)
constexpr /*iterator*/ operator ++ ( int )
requires /*all-forward*/ < Const, Views... > ;
(3) (desde C++23)
constexpr /*iterator*/ & operator -- ( )
requires /*all-bidirectional*/ < Const, Views... > ;
(4) (desde C++23)
constexpr /*iterator*/ operator -- ( int )
requires /*all-bidirectional*/ < Const, Views... > ;
(5) (desde C++23)
constexpr /*iterator*/ & operator + = ( difference_type n )
requires /*all-random-access*/ < Const, Views... > ;
(6) (desde C++23)
constexpr /*iterator*/ & operator - = ( difference_type n )
requires /*all-random-access*/ < Const, Views... > ;
(7) (desde C++23)

Incrementa o decrementa cada uno de los iteradores subyacentes is_... en el objeto tipo tupla subyacente current_ .

1) Equivalente a /*tuple-for-each*/ ( [ ] ( auto & i ) { ++ i ; } , current_ ) ; return * this ;
2) Equivalente a ++* this ;
3) Equivalente a auto tmp = * this ; ++* this ; return tmp ;
4) Equivalente a /*tuple-for-each*/ ( [ ] ( auto & i ) { -- i ; } , current_ ) ; return * this ;
5) Equivalente a auto tmp = * this ; --* this ; return tmp ;
6) Equivalente a /*tuple-for-each*/ ( [ & ] < class I > ( I & i ) { i + = iter_difference_t < I > ( x ) ; } , current_ ) ; return * this ;
7) Equivalente a /*tuple-for-each*/ ( [ & ] < class I > ( I & i ) { i - = iter_difference_t < I > ( x ) ; } , current_ ) ; return * this ;

Parámetros

n - posición relativa a la ubicación actual

Valor de retorno

1,4,6,7) * this
2) (ninguno)
3,5) una copia de * this que se realizó antes del cambio

Ejemplo