| Name | Description |
---|
  | AggregateT(VectorT, FuncT, T, T) |
Applies an accumulator function over the elements of a vector.
|
  | AggregateR, C, TAccumulate(DataFrameR, C, TAccumulate, FuncTAccumulate, DataFrameRowR, C, TAccumulate) |
Applies an accumulator function over the rows of a data frame.
The specified seed value is used as the initial accumulator value.
|
  | AggregateT, TAccumulate(VectorT, TAccumulate, FuncTAccumulate, T, TAccumulate) |
Applies an accumulator function over the elements of a vector.
|
  | AggregateR, C, TAccumulate, TResult(DataFrameR, C, TAccumulate, FuncTAccumulate, DataFrameRowR, C, TAccumulate, FuncTAccumulate, TResult) |
Applies an accumulator function over the rows of a data frame.
The specified seed value is used as the initial accumulator value.
|
  | AggregateT, TAccumulate, TResult(VectorT, TAccumulate, FuncTAccumulate, T, TAccumulate, FuncTAccumulate, TResult) |
Aggregates the elements of a vector using the specified accumulator
and seed value.
|