Espacios de nombres
Variantes
Acciones

std::reverse_iterator::operator++,+,+=,--,-,-=

De cppreference.com
 
 
Biblioteca de iteradores
Conceptos de iteradores
Primitivas de iteradores
Conceptos de algoritmos y servicios
Conceptos invocables indirectos
Requerimientos comunes de algoritmos
Servicios
Adaptadores de iteradores
Iteradores de flujos
Puntos de personalización de iteradores
Operaciones de iteradores
(C++11)
(C++11)
Acceso a rangos
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
std::reverse_iterator
Las funciones miembro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
reverse_iterator::operator++reverse_iterator::operator+reverse_iterator::operator+=reverse_iterator::operator--reverse_iterator::operator-reverse_iterator::operator-=
Terceros funciones
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
reference operator++();
(1)
reference operator--();
(2)
reference operator++( int );
(3)
reference operator--( int );
(4)
reverse_iterator operator+( difference_type n ) const;
(5)
reverse_iterator operator-( difference_type n ) const;
(6)
reverse_iterator& operator+=( difference_type n ) const;
(7)
reverse_iterator& operator-=( difference_type n ) const;
(8)
Aumenta o disminuye el iterador. Inverse operations are applied to the underlying operator because of the reverse order.
Original:
Increments or decrements the iterator. Inverse operations are applied to the underlying operator because of the reverse order.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1-2)
Pre-aumenta o disminuye por un pre-respectivamente .
Original:
Pre-increments or pre-decrements by one respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3-4)
Post-incrementos o decrementos de correos-por una respectivamente .
Original:
Post-increments or post-decrements by one respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
5-6)
Devuelve un iterador que se avanza por n o posiciones -n respectivamente .
Original:
Returns an iterator which is advanced by n or -n positions respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
7-8)
Avanza el iterador por n o -n posiciones respectivamente .
Original:
Advances the iterator by n or -n positions respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Valor de retorno

1) *this
2)
una copia de *this que se hizo antes del cambio
Original:
a copy of *this that was made before the change
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3) reverse_iterator(base()-n) or reverse_iterator(base()+n) respectively.
4) *this

[editar] Ejemplo

[editar] Ver también

avanza el iterador
Original:
advances the iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(plantilla de función) [editar]