The following functions return 'true' if the JSON parsing is successful or throw TJsonException otherwise. */
| 89 | The following functions return 'true' if the JSON parsing is successful or throw TJsonException otherwise. |
| 90 | */ |
| 91 | inline bool ValidateJsonThrow(IInputStream* in, const TJsonReaderConfig* config) { |
| 92 | return ValidateJson(in, config, true); |
| 93 | } |
| 94 | |
| 95 | inline bool ValidateJsonThrow(TStringBuf in, const TJsonReaderConfig& config = TJsonReaderConfig()) { |
| 96 | return ValidateJson(in, config, true); |
nothing calls this directly
no test coverage detected