| 61 | } |
| 62 | |
| 63 | inline void TStringBuilderBase::AppendString(TStringBuf str) |
| 64 | { |
| 65 | if (Y_LIKELY(str)) { |
| 66 | char* dst = Preallocate(str.length()); |
| 67 | ::memcpy(dst, str.begin(), str.length()); |
| 68 | Advance(str.length()); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | inline void TStringBuilderBase::AppendString(const char* str) |
| 73 | { |
no test coverage detected