System::Collections::Generic::SortedList::rbegin method

SortedList::rbegin() const method

Obtiene un iterador inverso al último elemento de la colección calificada como const (el primero en reversa).

const_reverse_iterator System::Collections::Generic::SortedList<TKey, TValue>::rbegin() const noexcept

ReturnValue

Un iterador inverso que apunta al último elemento del mapa const‑qualificado (primero en reversa).

Ver también

SortedList::rbegin() method

Obtiene un iterador inverso al último elemento de la colección (el primero en reversa).

reverse_iterator System::Collections::Generic::SortedList<TKey, TValue>::rbegin() noexcept

ReturnValue

Un iterador inverso que apunta al último elemento del mapa (primero en reversa).

Ver también