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

Method write

external/jsoncpp/jsoncpp.cpp:4490–4496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4488void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
4489
4490JSONCPP_STRING FastWriter::write(const Value& root) {
4491 document_.clear();
4492 writeValue(root);
4493 if (!omitEndingLineFeed_)
4494 document_ += "\n";
4495 return document_;
4496}
4497
4498void FastWriter::writeValue(const Value& value) {
4499 switch (value.type()) {

Callers 2

writeStringFunction · 0.45
jsoncpp.cppFile · 0.45

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected