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