Packages

object Queryable

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Queryable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. implicit def allView[P, W, ID](implicit pw: Postable[P, W, ID], ph: PostHistory[W, ID]): Queryable[View[P], W]

    querying for objects of a type, as a view

    querying for objects of a type, as a view

    pw

    postability of P, needed for history

    ph

    post history of P from W

    returns

    implementation of querying typeclass

  2. implicit def gatherMapQuery[P, W, ID](implicit ph: PostHistory[W, ID], mpw: PostMaps[P]): Queryable[GatherMapPost[P], W]
  3. implicit def gatherQuery[P, W, ID](implicit ph: PostHistory[W, ID], pw: Postable[P, W, ID]): Queryable[GatherPost[P], W]
  4. def simple[U, W](func: (W) => U): Queryable[U, W]

    a simple query, with result blocking and no predicate

    a simple query, with result blocking and no predicate

    func

    the query function

    returns

    typeclass implementation based on func