| 216 | bool IsValid() const { return stack_.GetSize() == sizeof(uint64_t); } |
| 217 | |
| 218 | uint64_t GetHashCode() const { |
| 219 | RAPIDJSON_ASSERT(IsValid()); |
| 220 | return *stack_.template Top<uint64_t>(); |
| 221 | } |
| 222 | |
| 223 | private: |
| 224 | static const size_t kDefaultSize = 256; |
no outgoing calls
no test coverage detected