| 2931 | difference_type ssize() const noexcept { return static_cast<difference_type>(size()); } |
| 2932 | size_type size() const noexcept { return sz_string_length(&string_); } |
| 2933 | size_type length() const noexcept { return size(); } |
| 2934 | size_type max_size() const noexcept { return npos - 1; } |
| 2935 | bool empty() const noexcept { return sz_string_length(&string_) == 0; } |
| 2936 | size_type capacity() const noexcept { |
no outgoing calls
no test coverage detected