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

Function parser

3rd/nlohmann_json/include/nlohmann/json.hpp:205–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

203
204 template<typename InputAdapterType>
205 static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser(
206 InputAdapterType adapter,
207 detail::parser_callback_t<basic_json>cb = nullptr,
208 const bool allow_exceptions = true,
209 const bool ignore_comments = false
210 )
211 {
212 return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter),
213 std::move(cb), allow_exceptions, ignore_comments);
214 }
215
216 private:
217 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