operator+(std::reverse_iterator)
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
template< class Iterator > reverse_iterator<Iterator> operator+( typename reverse_iterator<Iterator>::difference_type n, const reverse_iterator<Iterator>& it ); |
||
Devuelve el iterador
it incrementa en n .Original:
Returns the iterator
it incremented by n.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parámetros
| n | - | el número de posiciones para incrementar el iterador
Original: the number of positions to increment the iterator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| it | - | el adaptador de iterador se incremente
Original: the iterator adaptor to increment The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
El iterador incrementa, es decir
reverse_iterator<Iterator>(x.current - n)Original:
The incremented iterator, that is
reverse_iterator<Iterator>(x.current - n)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Ejemplo
| Esta sección está incompleta Razón: sin ejemplo |
Ver también
avances o disminuye el iterador Original: advances or decrements the iterator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública) |