Accumulate

final class Accumulate[In, Out, S, B](val source: Query[In, Out], val initialState: S, val modifyState: (S, Out) => S, val getResults: S => Iterable[B]) extends Query[In, B]
trait Query[In, B]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def map[C](f: B => C): Query[In, C]
Definition Classes
override def mapConcat[C](f: B => Iterable[C]): Query[In, C]
Definition Classes
override def mapFilter[C](f: B => Option[C]): Query[In, C]
Definition Classes
override def toString: String
Definition Classes
Any
override def where(p: () => B): Query[In, B]
Definition Classes

Inherited methods

def ++[In2 <: In, Out0 >: B](that: Query[In2, Out0]): Query[In2, Out0]
Inherited from:
Query
def >>>[Out0 >: B : Tag, Out2](that: Query[From[Out0], Out2]): Query[In, Out2]
Inherited from:
Query
def accumulate[S, B](initialState: S)(modifyState: (S, B) => S)(getResults: S => Iterable[B]): Query[In, B]
Inherited from:
Query
def andThen[Out0 >: B : Tag, Out2](that: Query[From[Out0], Out2]): Query[In, Out2]
Inherited from:
Query
def collect[B](pf: PartialFunction[B, B]): Query[In, B]
Inherited from:
Query
def crossJoin[In2 <: In, Out2](that: Query[In2, Out2]): InnerJoinPartiallyApplied[In2, B, Out2]
Inherited from:
Query
def flatMap[In2 <: In, B](f: B => Query[In2, B]): Query[In2, B]
Inherited from:
Query
def groupBy[A, B, C](f: B => A, g: B => B, h: B => C): GroupByQuery[In, B, (A, B, C)]
Inherited from:
Query
def groupBy[A, B](f: B => A, g: B => B): GroupByQuery[In, B, (A, B)]
Inherited from:
Query
def groupBy[A](f: B => A): GroupByQuery[In, B, A]
Inherited from:
Query
def join[In2 <: In, Out2](that: Query[In2, Out2]): InnerJoinPartiallyApplied[In2, B, Out2]
Inherited from:
Query
def leftJoin[In2 <: In, Out2](that: Query[In2, Out2]): LeftJoinPartiallyApplied[In2, B, Out2]
Inherited from:
Query
def sortBy[B : Order](f: B => B): Query[In, B]
Inherited from:
Query
def sorted(implicit order: Order[B]): Query[In, B]
Inherited from:
Query
def union[In2 <: In, Out0 >: B](that: Query[In2, Out0]): Query[In2, Out0]
Inherited from:
Query
def whereNot(p: () => B): Query[In, B]
Inherited from:
Query
def whereSubQuery[In2 <: In](p: B => QueryResult[In2, Boolean]): Query[In2, B]
Inherited from:
Query
def withFilter(p: () => B): Query[In, B]
Inherited from:
Query