MCPcopy Create free account
hub / github.com/bytedance/sonic-cpp / parse

Method parse

benchmark/json.h:105–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103class JsonBase {
104 public:
105 std::unique_ptr<const PR> parse(std::string_view json_file) const {
106 std::unique_ptr<PR> pr = std::make_unique<PR>(json_file);
107 if (pr && static_cast<const Json *>(this)->parse_impl(json_file, *pr))
108 return std::move(pr);
109 return nullptr;
110 }
111};
112
113#endif

Callers 6

parse_implMethod · 0.80
BM_EncodeFunction · 0.80
BM_StatFunction · 0.80
BM_FindFunction · 0.80
BM_DecodeFunction · 0.80
parse_implMethod · 0.80

Calls 1

parse_implMethod · 0.45

Tested by

no test coverage detected