| 1511 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 1512 | |
| 1513 | JSONCPP_STRING Value::toStyledString() const { |
| 1514 | StreamWriterBuilder builder; |
| 1515 | |
| 1516 | JSONCPP_STRING out = this->hasComment(commentBefore) ? "\n" : ""; |
| 1517 | out += Json::writeString(builder, *this); |
| 1518 | out += '\n'; |
| 1519 | |
| 1520 | return out; |
| 1521 | } |
| 1522 | |
| 1523 | Value::const_iterator Value::begin() const { |
| 1524 | switch (type_) { |