MCPcopy Create free account
hub / github.com/Illumina/paragraph / parse

Method parse

external/jsoncpp/jsoncpp.cpp:318–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316}
317
318bool
319Reader::parse(const std::string& document, Value& root, bool collectComments) {
320 document_.assign(document.begin(), document.end());
321 const char* begin = document_.c_str();
322 const char* end = begin + document_.length();
323 return parse(begin, end, root, collectComments);
324}
325
326bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
327 // std::istream_iterator<char> begin(sin);

Callers 2

parseMethod · 0.45
parseFromStreamFunction · 0.45

Calls 10

dataMethod · 0.80
emptyMethod · 0.80
setCommentMethod · 0.80
isArrayMethod · 0.80
isObjectMethod · 0.80
beginMethod · 0.45
endMethod · 0.45
lengthMethod · 0.45
sizeMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected