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

Function IsNotImplemented

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

Return true iff the status indicates an unimplemented operation.

Source from the content-addressed store, hash-verified

307 constexpr bool IsUnknownError() const { return code() == StatusCode::UnknownError; }
308 /// Return true iff the status indicates an unimplemented operation.
309 constexpr bool IsNotImplemented() const { return code() == StatusCode::NotImplemented; }
310 /// Return true iff the status indicates a (de)serialization failure
311 constexpr bool IsSerializationError() const {
312 return code() == StatusCode::SerializationError;

Callers

nothing calls this directly

Calls 1

codeFunction · 0.70

Tested by

no test coverage detected