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