| 8154 | std::string buf_head(size_t l) const { return buf_.substr(buf_spos_, l); } |
| 8155 | |
| 8156 | bool buf_start_with(const std::string &s) const { |
| 8157 | return start_with(buf_, buf_spos_, buf_epos_, s); |
| 8158 | } |
| 8159 | |
| 8160 | size_t buf_find(const std::string &s) const { |
| 8161 | auto c = s.front(); |
nothing calls this directly
no outgoing calls
no test coverage detected