Packages

case class LatestAnswer[Q, W, ID](answers: Vector[AnswerFromPost[_, Q, W, ID]])(implicit h: PostHistory[W, ID]) extends LocalQueryable[Q, W, ID] with Product with Serializable

Queries answered by taking the latest out of possibly many choices of posts to be looked up and transformed.

answers

various ways in which the query can be answered

h

the history

Linear Supertypes
Serializable, Product, Equals, LocalQueryable[Q, W, ID], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LatestAnswer
  2. Serializable
  3. Product
  4. Equals
  5. LocalQueryable
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LatestAnswer(answers: Vector[AnswerFromPost[_, Q, W, ID]])(implicit h: PostHistory[W, ID])

    answers

    various ways in which the query can be answered

    h

    the history

Value Members

  1. val answers: Vector[AnswerFromPost[_, Q, W, ID]]
  2. def getAt(web: W, id: ID, predicate: (Q) => Boolean): Future[Vector[Q]]
    Definition Classes
    LatestAnswerLocalQueryable
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def ||[P](ans: (P) => Q)(implicit pw: Postable[P, W, ID]): LatestAnswer[Q, W, ID]