Return true iff the status indicates success.
| 286 | |
| 287 | /// Return true iff the status indicates success. |
| 288 | constexpr bool ok() const { return (state_ == NULLPTR); } |
| 289 | |
| 290 | /// Return true iff the status indicates an out-of-memory error. |
| 291 | constexpr bool IsOutOfMemory() const { return code() == StatusCode::OutOfMemory; } |
no outgoing calls
no test coverage detected