write raw json without checks
| 125 | |
| 126 | // write raw json without checks |
| 127 | void UnsafeWrite(const TStringBuf& value) { |
| 128 | Buf.UnsafeWriteValue(value); |
| 129 | } |
| 130 | |
| 131 | template <typename T> |
| 132 | void Write(const TStringBuf& key, const T& value) { |
nothing calls this directly
no test coverage detected