MCPcopy Create free account
hub / github.com/CalcProgrammer1/OpenRGB / parse

Function parse

dependencies/json/json.hpp:23270–23278  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23268 JSON_HEDLEY_WARN_UNUSED_RESULT
23269 JSON_HEDLEY_DEPRECATED_FOR(3.8.0, parse(ptr, ptr + len))
23270 static basic_json parse(detail::span_input_adapter&& i,
23271 const parser_callback_t cb = nullptr,
23272 const bool allow_exceptions = true,
23273 const bool ignore_comments = false)
23274 {
23275 basic_json result;
23276 parser(i.get(), cb, allow_exceptions, ignore_comments).parse(true, result);
23277 return result;
23278 }
23279
23280 /*!
23281 @brief check if the input is valid JSON

Callers 4

operator "" _jsonFunction · 0.70
InitializeMethod · 0.50
ReceiveThreadFunctionMethod · 0.50
APIRequestFunction · 0.50

Calls 3

parserFunction · 0.70
parseMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected