MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / parser

Function parser

3rd/nlohmann_json/single_include/nlohmann/json.hpp:17706–17715  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17704
17705 template<typename InputAdapterType>
17706 static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser(
17707 InputAdapterType adapter,
17708 detail::parser_callback_t<basic_json>cb = nullptr,
17709 const bool allow_exceptions = true,
17710 const bool ignore_comments = false
17711 )
17712 {
17713 return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter),
17714 std::move(cb), allow_exceptions, ignore_comments);
17715 }
17716
17717 private:
17718 using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t;

Callers 5

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

Calls

no outgoing calls

Tested by

no test coverage detected