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

Function IsCapacityError

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

Return true iff the status indicates a container reaching capacity limits.

Source from the content-addressed store, hash-verified

299 constexpr bool IsIOError() const { return code() == StatusCode::IOError; }
300 /// Return true iff the status indicates a container reaching capacity limits.
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.

Callers

nothing calls this directly

Calls 1

codeFunction · 0.70

Tested by

no test coverage detected