Namespaces
Variants

std::inplace_vector<T,N>:: begin, std::inplace_vector<T,N>:: cbegin

From cppreference.net

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

* this の最初の要素へのイテレータを返します。

* this が空の場合、返されるイテレータは end() と等しくなります。

range-begin-end.svg

目次

戻り値

最初の要素へのイテレータ。

計算量

定数。

関連項目

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