Return true iff the status indicates a key lookup error.
| 291 | constexpr bool IsOutOfMemory() const { return code() == StatusCode::OutOfMemory; } |
| 292 | /// Return true iff the status indicates a key lookup error. |
| 293 | constexpr bool IsKeyError() const { return code() == StatusCode::KeyError; } |
| 294 | /// Return true iff the status indicates invalid data. |
| 295 | constexpr bool IsInvalid() const { return code() == StatusCode::Invalid; } |
| 296 | /// Return true iff the status indicates a cancelled operation. |