operator+(std::reverse_iterator)
Aus 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 ); |
||
Liefert den Iterator
it durch n erhöht .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.
Parameter
| n | - | die Anzahl der Positionen, um den Iterator erhöhen
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 | - | der Iterator-Adapter zu erhöhen
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. |
Rückgabewert
Der inkrementierte Iterator, die
reverse_iterator<Iterator>(x.current - n) istOriginal:
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.
Beispiel
| This section is incomplete Reason: no example |
Siehe auch
Vorschüsse oder dekrementiert den Iterator 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. (öffentliche Elementfunktion) | |