std::basic_string::rbegin, std::basic_string::crbegin
Da cppreference.com.
< cpp | string | basic string
Versione del 2 nov 2012 alle 11:10 di P12bot (Discussione | contributi)
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
iterator rbegin(); |
||
const_iterator rbegin() const; |
||
const_iterator crbegin() const; |
(dal C++11) | |
Returns a reverse iterator to the first character of the reversed string. It corresponds to the last character of the non-reversed string.
Indice |
Parametri
(Nessuno)
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.
Valore di ritorno
reverse iterator to the first character
Complessità
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.