Const

final class Const[A](val values: Iterable[A]) extends Query[Any, A]
trait Query[Any, A]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def toString: String
Definition Classes
Any

Inherited methods

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