LeftJoinedQuery

final class LeftJoinedQuery[In <: From[_], In2 <: From[_], Out, Out2](val left: Query[In, Out], val right: Query[In2, Out2], val on: (Out, Out2) => Boolean)(implicit evidence$71: Tag[In], evidence$72: Tag[In2], evidence$73: Tag[Out], evidence$74: Tag[Out2]) extends JoinedQuery[In, In2, Out, Out2, (Out, Option[Out2])]
class JoinedQuery[In, In2, Out, Out2, (Out, Option[Out2])]
class Query[In & In2, (Out, Option[Out2])]
trait Serializable
class Object
trait Matchable
class Any

Value members

Concrete methods

override def explain: QueryExplain
Definition Classes

Inherited methods

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