Namespaces
Variants

std::inplace_vector<T,N>:: end, std::inplace_vector<T,N>:: cend

From cppreference.net

constexpr iterator end ( ) noexcept ;
(1) (C++26以降)
constexpr const_iterator end ( ) const noexcept ;
(2) (C++26以降)
constexpr const_iterator cend ( ) const noexcept ;
(3) (C++26以降)

* this の最後の要素の次を指すイテレータを返します。

この返されたイテレータはセンチネルとしてのみ機能します。これが デリファレンス可能 であることは保証されていません。

range-begin-end.svg

目次

戻り値

最後の要素の次のイテレータ。

計算量

定数。

関連項目

先頭を指すイテレータを返す
(public member function)
(C++11) (C++14)
コンテナまたは配列の終端を指すイテレータを返す
(function template)