MCPcopy Create free account
hub / github.com/apache/arrow / operator()

Method operator()

cpp/src/arrow/record_batch_test.cc:1282–1285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1280 : values(values), array_type(array_type) {}
1281
1282 Result<std::shared_ptr<Array>> operator()(const bool&) {
1283 auto raw_values = StatisticsValuesToRawValues<bool>(values);
1284 return BuildArray<BooleanType>(raw_values);
1285 }
1286 Result<std::shared_ptr<Array>> operator()(const int64_t&) {
1287 auto raw_values = StatisticsValuesToRawValues<int64_t>(values);
1288 return BuildArray<Int64Type>(raw_values);

Callers

nothing calls this directly

Calls 1

BuildArrayFunction · 0.85

Tested by

no test coverage detected