| 9 | { |
| 10 | |
| 11 | static inline String formatString(const String & x) |
| 12 | { |
| 13 | WriteBufferFromOwnString wb; |
| 14 | writeJSONString(x, wb, FormatSettings{}); |
| 15 | return wb.str(); |
| 16 | } |
| 17 | |
| 18 | template <typename T> |
| 19 | static inline String formatAsString(T x) |
no test coverage detected