final class ReduceBy[A, B] extends Aggregation[A]
- Alphabetic
- By Inheritance
- ReduceBy
- Aggregation
- QueryExpression
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ReduceBy(by: (A) => B)(f: (B, B) => B)
Type Members
- type Out = B
Output value of this expression.
Output value of this expression.
- Definition Classes
- ReduceBy → QueryExpression
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def &&[A0 <: A](that: Aggregation[A0])(implicit tupled: TupleFlatten[(Out, Aggregation.Out)]): Of[A0, utils.TupleFlatten.Out]
Chains multiple aggregation functions into a single one.
Chains multiple aggregation functions into a single one. Used to apply multiple aggregations to a single record For instance,
person.avgBy(_.age.toDouble) && person.sumBy(_.salary)
is anAggregation.Of[Person, (Double, BigDecimal)]
.Example:
select[Person] .groupBy(_.country) .aggregate((country, person) => person.avgBy(_.age.toDouble) && person.sumBy(_.salary) )
- that
aggregation function to chain with
- returns
this
aggregation function chainedthat
- Definition Classes
- Aggregation
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(xs: Iterable[A]): B
Applies
this
aggregation function to a set of values.Applies
this
aggregation function to a set of values.- returns
the aggregation result
- Definition Classes
- ReduceBy → Aggregation
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def contramap[A0](f: (A0) => A): Of[A0, Out]
Transforms
this
aggregation function input type.Transforms
this
aggregation function input type.- A0
the new input type
- f
reverse transformation function
- returns
this
aggregation function with new input type
- Definition Classes
- Aggregation
- 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
- def map[B](f: (Out) => B): Of[A, B]
Transforms
this
aggregation function output type.Transforms
this
aggregation function output type.- B
the new output type
- f
transformation function
- returns
this
aggregation function with transformed output
- Definition Classes
- Aggregation
- 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()
- final def processWindow(order: Ordering[A], values: Iterable[A])(implicit flatten: TupleFlatten[(A, Out)]): Iterable[utils.TupleFlatten.Out]
- Definition Classes
- Aggregation → QueryExpression
- 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()