MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / parser

Function parser

src/include/nlohmann/json.hpp:133–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131
132 template<typename InputAdapterType>
133 static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser(
134 InputAdapterType adapter,
135 detail::parser_callback_t<basic_json>cb = nullptr,
136 const bool allow_exceptions = true,
137 const bool ignore_comments = false
138 )
139 {
140 return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter),
141 std::move(cb), allow_exceptions, ignore_comments);
142 }
143
144 private:
145 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