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

Method InitAll

cpp/src/arrow/compute/kernel.cc:62–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62Status Kernel::InitAll(KernelContext* ctx, const KernelInitArgs& args,
63 std::vector<std::unique_ptr<KernelState>>* states) {
64 for (auto& state : *states) {
65 ARROW_ASSIGN_OR_RAISE(state, args.kernel->init(ctx, args));
66 }
67 return Status::OK();
68}
69
70Result<std::unique_ptr<KernelState>> ScalarAggregateKernel::MergeAll(
71 const ScalarAggregateKernel* kernel, KernelContext* ctx,

Callers

nothing calls this directly

Calls 3

ARROW_ASSIGN_OR_RAISEFunction · 0.50
OKFunction · 0.50
initMethod · 0.45

Tested by

no test coverage detected