Returns stored int64 value. Fails if stored value type is not int64.
| 284 | // Returns stored int64 value. |
| 285 | // Fails if stored value type is not int64. |
| 286 | int64_t Int64OrDie() const { return GetValueOrDie<int64_t>(Type::kInt64); } |
| 287 | |
| 288 | // Returns stored uint64 value. |
| 289 | // Fails if stored value type is not uint64. |
no outgoing calls