std::experimental::basic_string_view<CharT,Traits>::end, std::experimental::basic_string_view<CharT,Traits>::cend
From cppreference.com
< cpp | experimental | basic string view
| constexpr const_iterator end() const noexcept; |
(Library Fundamentals TS) | |
| constexpr const_iterator cend() const noexcept; |
(Library Fundamentals TS) | |
ビューの最後の文字の次の文字へのイテレータを返します。この文字はプレースホルダーとして機能し、アクセスしようとすると未定義の動作が発生します。
目次 |
[編集] パラメータ
(なし)
[編集] 戻り値
最後の文字の次の文字へのconst_iterator。
[編集] 計算量
Constant
[編集] 関連項目
| 先頭へのイテレータを返す (public member function) |