| 3921 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 3922 | |
| 3923 | JSONCPP_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 | |
| 3933 | Value::const_iterator Value::begin() const { |
| 3934 | switch (type_) { |