std::basic_string::rbegin, std::basic_string::crbegin
De cppreference.com
<metanoindex/>
<tbody> </tbody> iterator rbegin(); |
||
const_iterator rbegin() const; |
||
const_iterator crbegin() const; |
(desde 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.
Parâmetros
(Nenhum)
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.
Valor de retorno
reverse iterator to the first character
Complexidade
Constante
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.
