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

Method Visit

cpp/src/arrow/visit_data_inline.h:261–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

259
260 template <typename Visitor>
261 static Status Visit(const ArraySpan& arr, Visitor* visitor) {
262 return InlineVisitorType::VisitStatus(
263 arr, [visitor](c_type v) { return visitor->VisitValue(v); },
264 [visitor]() { return visitor->VisitNull(); });
265 }
266};
267
268// Visit a null bitmap, in order, without overhead.

Callers

nothing calls this directly

Calls 2

VisitValueMethod · 0.45
VisitNullMethod · 0.45

Tested by

no test coverage detected