MapQuery

final class MapQuery[In, Out0, Out1](val source: Query[In, Out0], val project: Out0 => Out1) extends Query[In, Out1]
trait Query[In, Out1]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def map[B](f: Out1 => B): Query[In, B]
Definition Classes
override def toString: String
Definition Classes
Any

Inherited methods

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