名前空間
変種

std::basic_string_view<CharT,Traits>::end, std::basic_string_view<CharT,Traits>::cend

提供: cppreference.com
2018年3月31日 (土) 03:57時点におけるMilkpot (トーク | 投稿記録)による版 (ページの作成:「{{cpp/string/basic_string_view/title | end | cend}} {{cpp/string/basic_string_view/navbar}} {{dcl begin}} {{dcl | since=c++17| constexpr const_iterator end() const noexce...」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
 
 
 
 
<tbody> </tbody>
constexpr const_iterator end() const noexcept;
(C++17以上)
constexpr const_iterator cend() const noexcept;
(C++17以上)

ビューの最後の文字の次の文字を指すイテレータを返します。 この文字はプレースホルダの役割を持ちます。 この文字にアクセスを試みると未定義動作になります。

引数

(なし)

戻り値

最後の文字の次の文字を指す const_iterator

計算量

一定。

関連項目

先頭を指すイテレータを返します
(パブリックメンバ関数) [edit]