operator+(std::reverse_iterator)
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> template< class Iterator > reverse_iterator<Iterator> operator+( typename reverse_iterator<Iterator>::difference_type n, const reverse_iterator<Iterator>& it ); |
||
Retorna o iterador
it incrementado por 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 | - | o número de cargos para incrementar o 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 | - | o adaptador iterador para incrementar
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
O iterador incrementado, que é
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.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
Veja também
avanços ou diminui o 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. (função pública membro) | |