MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / parser

Function parser

Source/Utils/json.hpp:16683–16692  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16681
16682 template<typename InputAdapterType>
16683 static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser(
16684 InputAdapterType adapter,
16685 detail::parser_callback_t<basic_json>cb = nullptr,
16686 const bool allow_exceptions = true,
16687 const bool ignore_comments = false
16688 )
16689 {
16690 return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter),
16691 std::move(cb), allow_exceptions, ignore_comments);
16692 }
16693
16694 using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t;
16695 template<typename BasicJsonType>

Callers 5

json.hppFile · 0.70
basic_json parseFunction · 0.70
parseFunction · 0.70
acceptFunction · 0.70
sax_parseFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected