MCPcopy Create free account
hub / github.com/Kitware/VTK / write

Method write

ThirdParty/jsoncpp/vtkjsoncpp/jsoncpp.cpp:4466–4472  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4464void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
4465
4466String FastWriter::write(const Value& root) {
4467 document_.clear();
4468 writeValue(root);
4469 if (!omitEndingLineFeed_)
4470 document_ += '\n';
4471 return document_;
4472}
4473
4474void FastWriter::writeValue(const Value& value) {
4475 switch (value.type()) {

Callers 2

writeStringFunction · 0.45
jsoncpp.cppFile · 0.45

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected