std::reverse_iterator::operator++,+,+=,--,-,-=
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> 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) | |
Incrmente ou dcrmente l'itrateur. 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.
You can help to correct and verify the translation. Click here for instructions.
1-2)
Pr-incrmente ou dcrmente de pr-un respectivement .
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.
You can help to correct and verify the translation. Click here for instructions.
3-4)
Post-incrmente ou dcrmente de post-un respectivement .
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.
You can help to correct and verify the translation. Click here for instructions.
5-6)
Retourne un itrateur qui est avanc par
n ou -n positions respectivement .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.
You can help to correct and verify the translation. Click here for instructions.
7-8)
Les progrs de l'itrateur par
n ou -n positions respectivement .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.
You can help to correct and verify the translation. Click here for instructions.
Retourne la valeur
1)
*this2)
une copie de
*this qui a t faite avant le changementOriginal:
a copy of
*this that was made before the changeThe 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.
3)
reverse_iterator(base()-n) or reverse_iterator(base()+n) respectively.4)
*thisExemple
| This section is incomplete Reason: no example |
Voir aussi
progrs de l'itrateur 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. (fonction gnrique) | |