System::Array::end メソッド

Array::end() const method

const 修飾されたコンテナの最後の要素の次の要素へのイテレータを返します。この要素はプレースホルダーとして機能し、アクセスしようとすると未定義の動作になります。

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

ReturnValue

const 修飾コンテナの最後の要素の後に配置される理論上の要素を指すイテレータ。

参照

Array::end() method

コンテナの最後の要素の次の要素へのイテレータを返します。この要素はプレースホルダーとして機能し、アクセスしようとすると未定義の動作になります。

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

ReturnValue

コンテナの最後の要素の後に配置される理論上の要素を指すイテレータ。

参照