◐ Shell
clean mode source ↗

std::basic_string::rbegin, std::basic_string::crbegin — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

iterator rbegin();

const_iterator rbegin() const;

const_iterator crbegin() const;

(depuis 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.

Paramètres

(Aucun)

Original:

(none)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Retourne la valeur

reverse iterator to the first character

Complexité

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.

Voir aussi

retourne un itérateur inverse à la fin

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.


(fonction membre publique) [edit]