| 54 | /// ``` |
| 55 | template <typename VISITOR, typename... ARGS> |
| 56 | inline Status VisitScalarInline(const Scalar& scalar, VISITOR* visitor, ARGS&&... args) { |
| 57 | switch (scalar.type->id()) { |
| 58 | ARROW_GENERATE_FOR_ALL_TYPES(SCALAR_VISIT_INLINE); |
| 59 | default: |
| 60 | break; |
| 61 | } |
| 62 | return Status::NotImplemented("Scalar visitor for type not implemented ", |
| 63 | scalar.type->ToString()); |
| 64 | } |
| 65 | |
| 66 | #undef SCALAR_VISIT_INLINE |
| 67 |
no test coverage detected