| 125 | std::string jsonPrettyPrint(Json const& _input) { return jsonPrint(_input, JsonFormat{JsonFormat::Pretty}); } |
| 126 | |
| 127 | std::string jsonCompactPrint(Json const& _input) { return jsonPrint(_input, JsonFormat{JsonFormat::Compact}); } |
| 128 | |
| 129 | std::string jsonPrint(Json const& _input, JsonFormat const& _format) |
| 130 | { |
no test coverage detected