std::basic_string::rbegin, std::basic_string::crbegin
Da cppreference.com.
                    
                                        
                    < cpp | string | basic string
                    
                                                            
                    | 
   | 
  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 | 
[modifica] 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.
[modifica] Valore di ritorno
reverse iterator to the first character
[modifica] 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.
[modifica] Vedi anche
|    (C++11)  | 
    restituisce un iteratore inverso alla fine   Original:  returns a reverse iterator to the end  The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico)  |