MCPcopy Create free account
hub / github.com/PlayFab/gsdk / parse

Method parse

cpp/cppsdk/jsoncpp.cpp:340–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

338}
339
340bool Reader::parse(const std::string& document,
341 Value& root,
342 bool collectComments) {
343 document_.assign(document.begin(), document.end());
344 const char* begin = document_.c_str();
345 const char* end = begin + document_.length();
346 return parse(begin, end, root, collectComments);
347}
348
349bool Reader::parse(std::istream& is, Value& root, bool collectComments) {
350 // std::istream_iterator<char> begin(is);

Calls 10

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