System::Array::end method
Contents
[
Hide
]Array::end() method
Returns an iterator to the element following the last element of the container. This element acts as a placeholder; attempting to access it results in undefined behavior.
iterator System::Array<T>::end() noexcept
ReturnValue
An iterator pointing to the theoretical element placed after the last element of the container.
See Also
- Typedef iterator
- Class Array
- Namespace System
- Library Aspose.PUB for C++
Array::end() const method
Returns an iterator to the element following the last element of the const-qualified container. This element acts as a placeholder; attempting to access it results in undefined behavior.
const_iterator System::Array<T>::end() const noexcept
ReturnValue
An iterator pointing to the theoretical element placed after the last element of the const-qualified container.
See Also
- Typedef const_iterator
- Class Array
- Namespace System
- Library Aspose.PUB for C++