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

Method Visit

cpp/src/arrow/array/util.cc:66–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64
65 template <typename T>
66 Status Visit(const T&) {
67 using ArrayType = typename TypeTraits<T>::ArrayType;
68 *out_ = std::make_shared<ArrayType>(data_);
69 return Status::OK();
70 }
71
72 Status Visit(const ExtensionType& type) {
73 *out_ = type.MakeArray(data_);

Callers 6

WriteGenericBatchFunction · 0.45
WriteTimestampBatchFunction · 0.45
TestBasicsMethod · 0.45
TestSlicedMethod · 0.45
TEST_FFunction · 0.45

Calls 2

OKFunction · 0.50
MakeArrayMethod · 0.45

Tested by 3

TestBasicsMethod · 0.36
TestSlicedMethod · 0.36
TEST_FFunction · 0.36