| 97 | void Append(const char* buf, size_t len); |
| 98 | |
| 99 | inline void Append(const char* b, const char* e) { |
| 100 | Append(b, NonNegativeDistance(b, e)); |
| 101 | } |
| 102 | |
| 103 | inline void Append(char ch) { |
| 104 | if (Len_ == Pos_) { |
nothing calls this directly
no test coverage detected