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

Method toStyledString

external/jsoncpp/jsoncpp.cpp:3923–3931  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3921ptrdiff_t Value::getOffsetLimit() const { return limit_; }
3922
3923JSONCPP_STRING Value::toStyledString() const {
3924 StreamWriterBuilder builder;
3925
3926 JSONCPP_STRING out = this->hasComment(commentBefore) ? "\n" : "";
3927 out += Json::writeString(builder, *this);
3928 out += "\n";
3929
3930 return out;
3931}
3932
3933Value::const_iterator Value::begin() const {
3934 switch (type_) {

Callers 2

alignReadMethod · 0.80
TEST_FFunction · 0.80

Calls 2

hasCommentMethod · 0.95
writeStringFunction · 0.85

Tested by 1

TEST_FFunction · 0.64