System::Array::begin method
Contents
[
Hide
]Array::begin() method
Returns an iterator to the first element of the container. If the container is empty, the returned iterator will be equal to end().
iterator System::Array<T>::begin() noexcept
ReturnValue
An iterator pointing to the first element of the container.
See Also
- Typedef iterator
- Class Array
- Namespace System
- Library Aspose.PUB for C++
Array::begin() const method
Returns an iterator to the first element of the const-qualified container. If the container is empty, the returned iterator will be equal to end().
const_iterator System::Array<T>::begin() const noexcept
ReturnValue
An iterator pointing to the first element of the const-qualified container.
See Also
- Typedef const_iterator
- Class Array
- Namespace System
- Library Aspose.PUB for C++