◐ Shell
clean mode source ↗

std::array::rbegin, std::array::crbegin - cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

reverse_iterator rbegin();

(desde C++11)

const_reverse_iterator rbegin() const;

(desde C++11)

const_reverse_iterator crbegin() const;

(desde C++11)

Retorna um iterador inverso ao primeiro elemento do recipiente invertido. Ele corresponde ao último elemento do recipiente não-reversa.

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.

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.

Valor de retorno

inverter iterador para o primeiro elemento

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.

Exceções

1-3)

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.

Veja também

retorna um iterador inverso até ao fim

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.


(função pública membro) [edit]