MCPcopy Create free account
hub / github.com/apache/arrow / IsInvalid

Function IsInvalid

cpp/src/arrow/status.h:295–295  ·  view source on GitHub ↗

Return true iff the status indicates invalid data.

Source from the content-addressed store, hash-verified

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.
297 constexpr bool IsCancelled() const { return code() == StatusCode::Cancelled; }
298 /// Return true iff the status indicates an IO-related failure.

Callers

nothing calls this directly

Calls 1

codeFunction · 0.70

Tested by

no test coverage detected