cbegin()

Array::cbegin() const method

Returns an iterator to the first const-qualified element of the container. If the container is empty, the returned iterator will be equal to cend().

const_iterator System::Array<T>::cbegin() const noexcept

Return Value

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

See Also