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