operator+(std::reverse_iterator)
Aus cppreference.com
< cpp | iterator | reverse iterator
![]() |
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. |
template< class Iterator > reverse_iterator<Iterator> |
||
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.
Inhaltsverzeichnis |
[Bearbeiten] 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. |
[Bearbeiten] Rückgabewert
Der inkrementierte Iterator, die reverse_iterator<Iterator>(x.current - n) ist
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.
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] 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) |