rend()

List::rend() method

Gets a reverse iterator for a non-existent element before the start of the collection.

reverse_iterator System::Collections::Generic::List<T>::rend() noexcept

Return Value

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

List::rend() const method

Gets a reverse iterator for a non-existent element before the start of the const-qualified collection.

const_reverse_iterator System::Collections::Generic::List<T>::rend() const noexcept

Return Value

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

See Also