Packages

object QueryParamDecoder

Source
QueryParam.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryParamDecoder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. implicit val FunctorQueryParamDecoder: Functor[QueryParamDecoder]

    QueryParamDecoder is a covariant functor.

  2. implicit val PlusEmptyQueryParamDecoder: MonoidK[QueryParamDecoder]

    QueryParamDecoder is a MonoidK.

  3. def apply[T](implicit ev: QueryParamDecoder[T]): QueryParamDecoder[T]

    summon an implicit QueryParamDecoder

  4. implicit lazy val booleanQueryParamDecoder: QueryParamDecoder[Boolean]
  5. implicit lazy val charQueryParamDecoder: QueryParamDecoder[Char]
  6. implicit lazy val doubleQueryParamDecoder: QueryParamDecoder[Double]
  7. def fail[A](sanitized: String, detail: String): QueryParamDecoder[A]

    A decoder that always fails.

  8. implicit lazy val floatQueryParamDecoder: QueryParamDecoder[Float]
  9. def fromUnsafeCast[T](cast: (QueryParameterValue) ⇒ T)(typeName: String): QueryParamDecoder[T]
  10. implicit lazy val intQueryParamDecoder: QueryParamDecoder[Int]
  11. implicit lazy val longQueryParamDecoder: QueryParamDecoder[Long]
  12. implicit lazy val shortQueryParamDecoder: QueryParamDecoder[Short]
  13. implicit lazy val stringQueryParamDecoder: QueryParamDecoder[String]
  14. def success[A](a: A): QueryParamDecoder[A]

    A decoder that always succeeds.

  15. implicit lazy val unitQueryParamDecoder: QueryParamDecoder[Unit]
  16. implicit val uriQueryParamDecoder: QueryParamDecoder[Uri]

Deprecated Value Members

  1. def decodeBy[U, T](f: (T) ⇒ U)(implicit qpd: QueryParamDecoder[T]): QueryParamDecoder[U]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.16) Use QueryParamDecoder[T].map(f)