MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / common_json_parse

Function common_json_parse

common/json-partial.cpp:23–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

test_json_healingFunction · 0.85

Calls 8

stringClass · 0.85
endMethod · 0.80
lengthMethod · 0.80
beginMethod · 0.45
whatMethod · 0.45
emptyMethod · 0.45
sizeMethod · 0.45
strMethod · 0.45

Tested by 1

test_json_healingFunction · 0.68