| 70 | explicit operator std::string_view() const { return std::string_view(data_, length_); } |
| 71 | |
| 72 | const char* data() const { return data_; } |
| 73 | size_t length() const { return length_; } |
| 74 | bool empty() const { return length_ == 0; } |
| 75 | char operator[](size_t pos) const { |
no outgoing calls