operator+(std::reverse_iterator)
Aus cppreference.com
<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 |
