| 4965 | size_t buf_size() const { return buf_epos_ - buf_spos_; } |
| 4966 | |
| 4967 | const char *buf_data() const { return &buf_[buf_spos_]; } |
| 4968 | |
| 4969 | std::string buf_head(size_t l) const { return buf_.substr(buf_spos_, l); } |
| 4970 |
nothing calls this directly
no outgoing calls
no test coverage detected