◐ Shell
clean mode source ↗

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

De cppreference.com

<metanoindex/>

<tbody> </tbody>

reverse_iterator rbegin();

const_reverse_iterator rbegin() const;

const_reverse_iterator crbegin() const;

(depuis C++11)

Retourne un itérateur inverse au premier élément du conteneur renversé. Il correspond au dernier élément du conteneur non inversée .

Original:

Returns a reverse iterator to the first element of the reversed container. It corresponds to the last element of the non-reversed container.

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

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

inverser itérateur sur le premier élément

Original:

reverse iterator to the first element

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

Exceptions

1-3)

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 inversé à la fin
(fonction membre publique) [edit]