Return true iff the status indicates an out of bounds index.
| 301 | constexpr bool IsCapacityError() const { return code() == StatusCode::CapacityError; } |
| 302 | /// Return true iff the status indicates an out of bounds index. |
| 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. |