sealed trait AggregationDsl[In, Out] extends AnyRef
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- AggregationDsl
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def avg(implicit ev: Field[Out]): Aux[In, Out]
- abstract def avgBy[B](f: (Out) => B)(implicit ev: Field[B]): Aux[In, B]
- abstract def const[B](value: B): Aux[In, B]
- abstract def count(p: (Out) => Boolean): Aux[In, Int]
- abstract def custom[B](f: (Iterable[Out]) => B): Aux[In, B]
- abstract def distinct: Aux[In, Set[Out]]
- abstract def distinctBy[B](f: (Out) => B): Aux[In, Set[B]]
- abstract def flatDistinctBy[B](f: (Out) => Iterable[B]): Aux[In, Set[B]]
- abstract def product(implicit ev: MultiplicativeMonoid[Out]): Aux[In, Out]
- abstract def productBy[B](f: (Out) => B)(implicit ev: MultiplicativeMonoid[B]): Aux[In, B]
- abstract def report[B, C, U1, U2](split1: (Out) => B, split2: (Out) => C)(mergeCascade1: (B, C, AggregationView[Out]) => Aux[Out, U1])(mergeCascade2: (B, AggregationView[U1]) => Aux[U1, U2]): Aux[In, List[U2]]
- abstract def sum(implicit ev: AdditiveMonoid[Out]): Aux[In, Out]
- abstract def sumBy[B](f: (Out) => B)(implicit ev: AdditiveMonoid[B]): Aux[In, B]
- abstract def toList: Aux[In, List[Out]]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def size: Aux[In, Int]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()