System::Array::begin メソッド

Array::begin() const method

const 修飾されたコンテナの最初の要素へのイテレータを返します。コンテナが空の場合、返されるイテレータは end() と等しくなります。

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

ReturnValue

const 修飾されたコンテナの最初の要素を指すイテレータ。

参照

Array::begin() method

コンテナの最初の要素へのイテレータを返します。コンテナが空の場合、返されるイテレータは end() と等しくなります。

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

ReturnValue

コンテナの最初の要素を指すイテレータ。

参照