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

Method write

cpp/cppsdk/jsoncpp.cpp:4537–4543  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4535void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
4536
4537JSONCPP_STRING FastWriter::write(const Value& root) {
4538 document_.clear();
4539 writeValue(root);
4540 if (!omitEndingLineFeed_)
4541 document_ += '\n';
4542 return document_;
4543}
4544
4545void FastWriter::writeValue(const Value& value) {
4546 switch (value.type()) {

Callers 4

writeStringFunction · 0.80
jsoncpp.cppFile · 0.80
processRequestsMethod · 0.80
createConfigFileMethod · 0.80

Calls 1

clearMethod · 0.80

Tested by 2

processRequestsMethod · 0.64
createConfigFileMethod · 0.64