std::set::rbegin, std::set::crbegin
De cppreference.com
<metanoindex/>
<tbody> </tbody> reverse_iterator rbegin(); |
||
const_reverse_iterator rbegin() const; |
||
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.
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.
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.
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.
You can help to correct and verify the translation. Click here for instructions.
