| 3861 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 3862 | |
| 3863 | JSONCPP_STRING Value::toStyledString() const { |
| 3864 | StyledWriter writer; |
| 3865 | return writer.write(*this); |
| 3866 | } |
| 3867 | |
| 3868 | Value::const_iterator Value::begin() const { |
| 3869 | switch (type_) { |
no test coverage detected