AggregationViewMapped

sealed trait AggregationViewMapped[A, B] extends AggregationDsl[A, B]
trait AggregationDsl[A, B]
class Object
trait Matchable
class Any

Value members

Inherited methods

def avg(implicit ev: Field[B]): Of[A, B]
Inherited from:
AggregationDsl
def avgBy[B](f: B => B)(implicit ev: Field[B]): Of[A, B]
Inherited from:
AggregationDsl
def const[B](value: B): Of[A, B]
Inherited from:
AggregationDsl
def count(p: B => Boolean): Of[A, Int]
Inherited from:
AggregationDsl
def custom[B](f: Iterable[B] => B): Of[A, B]
Inherited from:
AggregationDsl
def distinct: Of[A, Set[B]]
Inherited from:
AggregationDsl
def distinctBy[B](f: B => B): Of[A, Set[B]]
Inherited from:
AggregationDsl
def flatDistinctBy[B](f: B => Iterable[B]): Of[A, Set[B]]
Inherited from:
AggregationDsl
def product(implicit ev: MultiplicativeMonoid[B]): Of[A, B]
Inherited from:
AggregationDsl
def productBy[B](f: B => B)(implicit ev: MultiplicativeMonoid[B]): Of[A, B]
Inherited from:
AggregationDsl
def report[B, C, U1](group1: B => B, group2: B => C)(merge: (B, C, AggregationView[B]) => Of[B, U1]): ReportPartiallyApplied2[B, B, C, U1]
Inherited from:
AggregationDsl
def report[B, U1](group1: B => B)(agg1: (B, AggregationView[B]) => Of[B, U1]): Of[A, List[U1]]
Inherited from:
AggregationDsl
def size: Of[A, Int]
Inherited from:
AggregationDsl
def std(implicit ev: Fractional[B]): Of[A, B]
Inherited from:
AggregationDsl
def stdBy[B](f: B => B)(implicit ev: Fractional[B]): Of[A, B]
Inherited from:
AggregationDsl
def sum(implicit ev: AdditiveMonoid[B]): Of[A, B]
Inherited from:
AggregationDsl
def sumBy[B](f: B => B)(implicit ev: AdditiveMonoid[B]): Of[A, B]
Inherited from:
AggregationDsl
def toList: Of[A, List[B]]
Inherited from:
AggregationDsl