System::Collections::ObjectModel::Collection::rbegin method

Collection::rbegin() method

Gets a reverse iterator to the last element of collection (first in reverse).

reverse_iterator System::Collections::ObjectModel::Collection<T>::rbegin() noexcept

ReturnValue

A reverse iterator pointing to the last element in the list (first in reverse).

See Also

Collection::rbegin() const method

Gets a reverse iterator to the last element of the const-qualified collection (first in reverse).

const_reverse_iterator System::Collections::ObjectModel::Collection<T>::rbegin() const noexcept

ReturnValue

A reverse iterator pointing to the last element in the const-qualified list (first in reverse).

See Also