std::experimental::basic_string_view<CharT,Traits>::size, std::experimental::basic_string_view<CharT,Traits>::length
來自 cppreference.com
< cpp | experimental | basic string view
constexpr size_type size() const noexcept; |
(庫基礎 TS) | |
constexpr size_type length() const noexcept; |
(庫基礎 TS) | |
返回檢視中 CharT
元素的數量,即 std::distance(begin(), end())。
目錄 |
[編輯] 引數
(無)
[編輯] 返回值
檢視中 CharT
元素的數量。
[編輯] 複雜度
常數時間。
[編輯] 參閱
檢查檢視是否為空 (公共成員函式) | |
返回字元的最大數量 (公共成員函式) |