System::Array::rend method
Array::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::Array<T>::rend() noexcept
ReturnValue
An iterator pointing to the theoretical element preceding the first element of the container.
See Also
- Typedef reverse_iterator
- Class Array
- Namespace System
- Library Aspose.PUB for C++
Array::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::Array<T>::rend() const noexcept
ReturnValue
An iterator pointing to the theoretical element preceding the first element of the const-qualified container.
See Also
- Typedef const_reverse_iterator
- Class Array
- Namespace System
- Library Aspose.PUB for C++