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

Method Visit

cpp/src/arrow/array/diff.cc:600–605  ·  view source on GitHub ↗

factory implementation

Source from the content-addressed store, hash-verified

598
599 // factory implementation
600 Status Visit(const BooleanType&) {
601 impl_ = [](const Array& array, int64_t index, std::ostream* os) {
602 *os << (checked_cast<const BooleanArray&>(array).Value(index) ? "true" : "false");
603 };
604 return Status::OK();
605 }
606
607 Status Visit(const HalfFloatType&) {
608 impl_ = [](const Array& array, int64_t index, std::ostream* os) {

Callers

nothing calls this directly

Calls 15

FromBitsFunction · 0.85
formatFunction · 0.85
HexEncodeFunction · 0.85
ListImplClass · 0.85
MakeFormatterFunction · 0.85
StructImplClass · 0.85
SparseImplClass · 0.85
DenseImplClass · 0.85
max_type_codeMethod · 0.80
OKFunction · 0.50
EscapeFunction · 0.50
NotImplementedFunction · 0.50

Tested by

no test coverage detected