OrderByQuery

final class OrderByQuery[In, Out, By](val source: Query[In, Out], val orderBy: Out => By, val orderingTag: Option[LightTypeTag])(implicit evidence$48: Tag[In], evidence$49: Tag[Out], val ordering: Ordering[By]) extends Query[In, Out]
class Query[In, Out]
trait Serializable
class Object
trait Matchable
class Any

Value members

Concrete methods

override def explain: QueryExplain
Definition Classes

Inherited methods

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