◐ Shell
clean mode source ↗

std::list::rbegin, std::list::crbegin – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

reverse_iterator rbegin();

const_reverse_iterator rbegin() const;

const_reverse_iterator crbegin() const;

(seit C++11)

Gibt eine umgekehrte Iterator das erste Element des Behälters umgekehrt. Er entspricht dem letzten Element des nicht-umgekehrten Behälters .

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.

Parameter

(None)

Original:

(none)

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

Rückgabewert

Reverse-Iterator auf das erste Element

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.

Ausnahmen

1-3)

Komplexität

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.

Siehe auch

gibt einen umgekehrten Iterator bis zum Ende

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.


(öffentliche Elementfunktion) [edit]