| 51 | /// ``` |
| 52 | template <typename VISITOR, typename... ARGS> |
| 53 | inline Status VisitArrayInline(const Array& array, VISITOR* visitor, ARGS&&... args) { |
| 54 | switch (array.type_id()) { |
| 55 | ARROW_GENERATE_FOR_ALL_TYPES(ARRAY_VISIT_INLINE); |
| 56 | default: |
| 57 | break; |
| 58 | } |
| 59 | return Status::NotImplemented("Type not implemented"); |
| 60 | } |
| 61 | |
| 62 | #undef ARRAY_VISIT_INLINE |
| 63 |
no test coverage detected