rend()

StringCollection::rend() method

Returns a reverse iterator to the element following the last element of the reversed container. It corresponds to the element preceding the first element of the non-reversed container. This element acts as a placeholder, attempting to access it results in undefined behavior.

reverse_iterator System::Collections::Specialized::StringCollection::rend() noexcept

Return Value

An iterator pointing to the theoretical element preceding the first element of the container.

StringCollection::rend() const method

Returns a reverse iterator to the element following the last element of the reversed container. It corresponds to the element preceding the first element of the non-reversed container. This element acts as a placeholder, attempting to access it results in undefined behavior.

const_reverse_iterator System::Collections::Specialized::StringCollection::rend() const noexcept

Return Value

An iterator pointing to the theoretical element preceding the first element of the const-qualified container.

See Also