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

Function ArrayData

cpp/src/arrow/array/data.h:88–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86 ArrayData() = default;
87
88 ArrayData(std::shared_ptr<DataType> type, int64_t length,
89 int64_t null_count = kUnknownNullCount, int64_t offset = 0)
90 : type(std::move(type)), length(length), null_count(null_count), offset(offset) {}
91
92 ArrayData(std::shared_ptr<DataType> type, int64_t length,
93 std::vector<std::shared_ptr<Buffer>> buffers,

Callers 5

data.hFile · 0.70
TEST_FFunction · 0.50
ExecMethod · 0.50
FinishMethod · 0.50
FinishMethod · 0.50

Calls 2

device_typeMethod · 0.45
loadMethod · 0.45

Tested by 1

TEST_FFunction · 0.40