| 383 | bool IsValid() const { return stack_.GetSize() == sizeof(uint64_t); } |
| 384 | |
| 385 | uint64_t GetHashCode() const { |
| 386 | RAPIDJSON_ASSERT(IsValid()); |
| 387 | return *stack_.template Top<uint64_t>(); |
| 388 | } |
| 389 | |
| 390 | private: |
| 391 | static const size_t kDefaultSize = 256; |
no test coverage detected