| 279 | |
| 280 | template <typename Stream> |
| 281 | void writeAsJSON (Stream& output, const value::ValueView& value, bool useMultipleLines) |
| 282 | { |
| 283 | Writer<Stream> { output, useMultipleLines ? 2u : 0u }.dump (value); |
| 284 | } |
| 285 | |
| 286 | inline std::string toString (const value::ValueView& v, bool useLineBreaks) |
| 287 | { |