| 217 | |
| 218 | size_t GetCount() const { return count_; } |
| 219 | Type GetDigit(size_t index) const { RAPIDJSON_ASSERT(index < count_); return digits_[index]; } |
| 220 | bool IsZero() const { return count_ == 1 && digits_[0] == 0; } |
| 221 | |
| 222 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected