Query whether the C array is released
| 68 | |
| 69 | /// Query whether the C array is released |
| 70 | inline int ArrowArrayIsReleased(const struct ArrowArray* array) { |
| 71 | return array->release == NULL; |
| 72 | } |
| 73 | |
| 74 | inline int ArrowDeviceArrayIsReleased(const struct ArrowDeviceArray* array) { |
| 75 | return ArrowArrayIsReleased(&array->array); |
no outgoing calls