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

Function IsKeyError

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

Return true iff the status indicates a key lookup error.

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

codeFunction · 0.70

Tested by

no test coverage detected