std::multiset::rend, std::multiset::crend
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> reverse_iterator rend(); |
||
const_reverse_iterator rend() const; |
||
const_reverse_iterator crend() const; |
(seit C++11) | |
Gibt eine umgekehrte Iterator das Element nach dem letzten Element des Behälters umgekehrt. Er entspricht dem Element, das dem ersten Element des nicht-umgekehrt-Container. Dieses Element fungiert als Platzhalter, versucht, darauf zugreifen Ergebnisse in undefinierten Verhalten .
Original:
Returns a reverse iterator to the element following the last element of the reversed container. It corresponds to the element preceding the first element of the non-reversed container. This element acts as a placeholder, attempting to access it results in undefined behavior.
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
(None)
Original:
(none)
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.
Rückgabewert
Reverse-Iterator auf das Element nach dem letzten Element
Original:
reverse iterator to the element following the last element
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.
Ausnahmen
1-3)
Komplexität
Constant
Original:
Constant
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.
