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

Function VisitScalarInline

cpp/src/arrow/visit_scalar_inline.h:56–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54/// ```
55template <typename VISITOR, typename... ARGS>
56inline 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

Callers 7

ScalarEqualsFunction · 0.85
AcceptMethod · 0.85
AccumulateHashFromMethod · 0.85
ValidateMethod · 0.85
VisitMethod · 0.85
operator()Function · 0.85
IsPositiveFunction · 0.85

Calls 3

NotImplementedFunction · 0.70
idMethod · 0.45
ToStringMethod · 0.45

Tested by

no test coverage detected