Returns stored timestamp value. Fails if stored value type is not timestamp.
| 327 | // Returns stored timestamp value. |
| 328 | // Fails if stored value type is not timestamp. |
| 329 | const absl::Time TimestampOrDie() const { |
| 330 | return GetValueOrDie<absl::Time>(Type::kTimestamp); |
| 331 | } |
| 332 | |
| 333 | // Returns stored const CelList* value. |
| 334 | // Fails if stored value type is not const CelList*. |
no outgoing calls