MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / basic_json parse

Function basic_json parse

Source/external/json.hpp:23185–23194  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23183 /// @sa https://json.nlohmann.me/api/basic_json/parse/
23184 template<typename InputType>
23185 JSON_HEDLEY_WARN_UNUSED_RESULT
23186 static basic_json parse(InputType&& i,
23187 const parser_callback_t cb = nullptr,
23188 const bool allow_exceptions = true,
23189 const bool ignore_comments = false)
23190 {
23191 basic_json result;
23192 parser(detail::input_adapter(std::forward<InputType>(i)), cb, allow_exceptions, ignore_comments).parse(true, result);
23193 return result;
23194 }
23195
23196 /// @brief deserialize from a pair of character iterators
23197 /// @sa https://json.nlohmann.me/api/basic_json/parse/

Callers

nothing calls this directly

Calls 3

input_adapterFunction · 0.85
parserFunction · 0.70
parseMethod · 0.45

Tested by

no test coverage detected