std::move_iterator::operator[]
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> /*unspecified*/ operator[]( difference_type n ) const; |
||
Gibt einen Verweis auf das Element am angegebenen relativen location .
Original:
Returns a reference to the element at specified relative location.
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 | - | Position relativ zum aktuellen Standort .
Original: position relative to current location. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
Ein Verweis auf das Element bei einer relativen Lage, das heißt,
current[n] .Original:
A reference to the element at relative location, that is,
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.
Beispiele
| This section is incomplete Reason: no example |
