AndThenQuery

final class AndThenQuery[In0, OutA, OutB](val left: Query[In0, OutA], val right: Query[From[OutA], OutB], val outATag: LightTypeTag)(implicit evidence$77: Tag[In0], evidence$78: Tag[OutB]) extends Query[In0, OutB]
class Query[In0, OutB]
trait Serializable
class Object
trait Matchable
class Any

Value members

Concrete methods

override def andThen[Out0 >: OutB : Tag, Out2 : Tag](that: Query[From[Out0], Out2]): Query[In0, Out2]
Definition Classes
override def collect[B : Tag](pf: PartialFunction[OutB, B]): Query[In0, B]
Definition Classes
override def explain: QueryExplain
Definition Classes
override def map[B : Tag](f: OutB => B): Query[In0, B]
Definition Classes
override def where(p: () => OutB): Query[In0, OutB]
Definition Classes

Inherited methods

final def ++[In2 <: In0 : Tag, Out0 >: OutB : Tag](that: Query[In2, Out0]): Query[In2, Out0]
Inherited from:
Query
final def >>>[Out0 >: OutB : Tag, Out2 : Tag](that: Query[From[Out0], Out2]): Query[In0, Out2]
Inherited from:
Query
def accumulate[S : Tag, B : Tag](initialState: S)(modifyState: (S, OutB) => S)(getResults: S => Iterable[B]): Query[In0, B]
Inherited from:
Query
def deduplicate: Query[In0, OutB]
Inherited from:
Query
def deduplicateBy[K : Tag](f: OutB => K): Query[In0, OutB]
Inherited from:
Query
def flatMap[In2 <: In0 : Tag, B : Tag](f: OutB => Query[In2, B]): Query[In2, B]
Inherited from:
Query
def groupBy[A : Tag, B : Tag, C : Tag](f: OutB => A, g: OutB => B, h: OutB => C): GroupByQuery[In0, OutB, (A, B, C)]
Inherited from:
Query
def groupBy[A : Tag, B : Tag](f: OutB => A, g: OutB => B): GroupByQuery[In0, OutB, (A, B)]
Inherited from:
Query
def groupBy[A : Tag](f: OutB => A): GroupByQuery[In0, OutB, A]
Inherited from:
Query
def mapConcat[B : Tag](f: OutB => Iterable[B]): Query[In0, B]
Inherited from:
Query
def statefulMap[S : Tag, B : Tag](initialState: S)(process: (S, OutB) => (S, B)): Query[In0, B]
Inherited from:
Query
def statefulMapConcat[S : Tag, B : Tag](initialState: S)(process: (S, OutB) => (S, Iterable[B])): Query[In0, B]
Inherited from:
Query
final override def toString: String
Definition Classes
Query -> Any
Inherited from:
Query
def union[In2 <: In0 : Tag, Out0 >: OutB : Tag](that: Query[In2, Out0]): Query[In2, Out0]
Inherited from:
Query
def whereNot(p: () => OutB): Query[In0, OutB]
Inherited from:
Query
def whereSubQuery[In2 <: In0 : Tag](p: OutB => QueryResult[In2, Boolean]): Query[In2, OutB]
Inherited from:
Query
def withFilter(p: () => OutB): Query[In0, OutB]
Inherited from:
Query