MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / common_json_parse

Function common_json_parse

smallthinker/common/json-partial.cpp:22–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20};
21
22bool common_json_parse(
23 const std::string & input,
24 const std::string & healing_marker,
25 common_json & out)
26{
27 std::string::const_iterator it = input.begin();
28 const auto end = input.end();
29 return common_json_parse(it, end, healing_marker, out);
30}
31
32bool common_json_parse(
33 std::string::const_iterator & it,

Callers 2

test_json_healingFunction · 0.85
try_consume_jsonMethod · 0.85

Calls 11

sax_parseFunction · 0.85
lengthMethod · 0.80
substrMethod · 0.80
stringClass · 0.50
parseFunction · 0.50
beginMethod · 0.45
endMethod · 0.45
whatMethod · 0.45
c_strMethod · 0.45
emptyMethod · 0.45
sizeMethod · 0.45

Tested by 1

test_json_healingFunction · 0.68