| 3864 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 3865 | |
| 3866 | String Value::toStyledString() const { |
| 3867 | StreamWriterBuilder builder; |
| 3868 | |
| 3869 | String out = this->hasComment(commentBefore) ? "\n" : ""; |
| 3870 | out += Json::writeString(builder, *this); |
| 3871 | out += '\n'; |
| 3872 | |
| 3873 | return out; |
| 3874 | } |
| 3875 | |
| 3876 | Value::const_iterator Value::begin() const { |
| 3877 | switch (type()) { |