Aggregate3Project2<A, B, C, D, E> extension
Extension methods for specifying aggregate functions over rows in a group.
Methods
-
avg<
F extends num> (Expr< F?> aggregateBuilder(Expr<A> a, Expr<B> b, Expr<C> c)) → Aggregation<(Expr< A> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> , Expr<double?> )> -
Available on Aggregation<
Add a(Expr< , provided by the Aggregate3Project2 extensionA> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> )>AVG
aggregate function to this Aggregation. -
count(
) → Aggregation< (Expr< A> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> , Expr<int> )> -
Available on Aggregation<
Add a(Expr< , provided by the Aggregate3Project2 extensionA> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> )>COUNT(*)
aggregate function to this Aggregation. -
max<
F extends Comparable> (Expr< F?> aggregateBuilder(Expr<A> a, Expr<B> b, Expr<C> c)) → Aggregation<(Expr< A> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> , Expr<F?> )> -
Available on Aggregation<
Add a(Expr< , provided by the Aggregate3Project2 extensionA> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> )>MAX
aggregate function to this Aggregation. -
min<
F extends Comparable> (Expr< F?> aggregateBuilder(Expr<A> a, Expr<B> b, Expr<C> c)) → Aggregation<(Expr< A> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> , Expr<F?> )> -
Available on Aggregation<
Add a(Expr< , provided by the Aggregate3Project2 extensionA> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> )>MIN
aggregate function to this Aggregation. -
sum<
F extends num> (Expr< F?> aggregateBuilder(Expr<A> a, Expr<B> b, Expr<C> c)) → Aggregation<(Expr< A> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> , Expr<F> )> -
Available on Aggregation<
Add a(Expr< , provided by the Aggregate3Project2 extensionA> , Expr<B> , Expr<C> ), (Expr<D> , Expr<E> )>SUM
aggregate function to this Aggregation.