Returns stored const string* value. Fails if stored value type is not const string*.
| 298 | // Returns stored const string* value. |
| 299 | // Fails if stored value type is not const string*. |
| 300 | StringHolder StringOrDie() const { |
| 301 | return GetValueOrDie<StringHolder>(Type::kString); |
| 302 | } |
| 303 | |
| 304 | BytesHolder BytesOrDie() const { |
| 305 | return GetValueOrDie<BytesHolder>(Type::kBytes); |
no outgoing calls