MCPcopy Create free account
hub / github.com/Samsung/UTopia / write

Method write

external/jsoncpp/jsoncpp.cpp:4433–4439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4431void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
4432
4433String FastWriter::write(const Value &root) {
4434 document_.clear();
4435 writeValue(root);
4436 if (!omitEndingLineFeed_)
4437 document_ += '\n';
4438 return document_;
4439}
4440
4441void FastWriter::writeValue(const Value &value) {
4442 switch (value.type()) {

Callers 4

applyReplacementsMethod · 0.45
generate_api_reportMethod · 0.45
writeStringFunction · 0.45
jsoncpp.cppFile · 0.45

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected