std::span<T,Extent>::begin, std::span<T,Extent>::cbegin
提供: cppreference.com
iterator begin() noexcept; |
(since {std}) | |
const_iterator begin() const noexcept; |
(since {std}) | |
const_iterator cbegin() const noexcept; |
(since {std}) | |
コンテナの最初の要素を指すイテレータを返します。
コンテナが空の場合は、返されたイテレータは end() と等しくなります。
目次 |
[編集] 引数
(なし)
[編集] 戻り値
最初の要素を指すイテレータ。
[編集] 計算量
一定。
[編集] 例
This section is incomplete Reason: no example |
[編集] 関連項目
終端を指すイテレータを返します (パブリックメンバ関数) |