Returns stored uint64 value. Fails if stored value type is not uint64.
| 288 | // Returns stored uint64 value. |
| 289 | // Fails if stored value type is not uint64. |
| 290 | uint64_t Uint64OrDie() const { |
| 291 | return GetValueOrDie<uint64_t>(Type::kUint64); |
| 292 | } |
| 293 | |
| 294 | // Returns stored double value. |
| 295 | // Fails if stored value type is not double. |
no outgoing calls