Metodo System::Array::begin

Array::begin() const method

Restituisce un iteratore al primo elemento del contenitore const-qualificato. Se il contenitore è vuoto, l’iteratore restituito sarà uguale a end().

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

ReturnValue

Un iteratore che punta al primo elemento del contenitore const-qualificato.

Vedi anche

Array::begin() method

Restituisce un iteratore al primo elemento del contenitore. Se il contenitore è vuoto, l’iteratore restituito sarà uguale a end().

iterator System::Array<T>::begin() noexcept

ReturnValue

Un iteratore che punta al primo elemento del contenitore.

Vedi anche