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

Function CumulativeProd

cpp/src/arrow/compute/api_vector.cc:455–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453}
454
455Result<Datum> CumulativeProd(const Datum& values, const CumulativeOptions& options,
456 bool check_overflow, ExecContext* ctx) {
457 auto func_name = check_overflow ? "cumulative_prod_checked" : "cumulative_prod";
458 return CallFunction(func_name, {Datum(values)}, &options, ctx);
459}
460
461Result<Datum> CumulativeMax(const Datum& values, const CumulativeOptions& options,
462 ExecContext* ctx) {

Callers 1

TESTFunction · 0.85

Calls 2

CallFunctionFunction · 0.85
DatumClass · 0.70

Tested by 1

TESTFunction · 0.68