MCPcopy Create free account
hub / github.com/Illumina/hap.py / write

Method write

external/jsoncpp/jsoncpp.cpp:3238–3244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3236void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
3237
3238std::string FastWriter::write(const Value &root) {
3239 document_ = "";
3240 writeValue(root);
3241 if (!omitEndingLineFeed_)
3242 document_ += "\n";
3243 return document_;
3244}
3245
3246void FastWriter::writeValue(const Value &value) {
3247 switch (value.type()) {

Callers 4

replace_shebangFunction · 0.45
toStyledStringMethod · 0.45
jsoncpp.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected