Return true iff the status indicates a type error.
| 303 | constexpr bool IsIndexError() const { return code() == StatusCode::IndexError; } |
| 304 | /// Return true iff the status indicates a type error. |
| 305 | constexpr bool IsTypeError() const { return code() == StatusCode::TypeError; } |
| 306 | /// Return true iff the status indicates an unknown error. |
| 307 | constexpr bool IsUnknownError() const { return code() == StatusCode::UnknownError; } |
| 308 | /// Return true iff the status indicates an unimplemented operation. |