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

Function VisitArrayInline

cpp/src/arrow/visit_array_inline.h:53–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51/// ```
52template <typename VISITOR, typename... ARGS>
53inline 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

Callers 10

PrintMethod · 0.85
VisitArrayValuesMethod · 0.85
FinishMethod · 0.85
AcceptMethod · 0.85
VisitTypeMethod · 0.85
MaybeReplaceValidityMethod · 0.85
VisitInlineMethod · 0.85
MakeMethod · 0.85
VisitMethod · 0.85
ConvertToVectorMethod · 0.85

Calls 2

NotImplementedFunction · 0.70
type_idMethod · 0.45

Tested by

no test coverage detected