object QueryParamDecoder
- Source
- QueryParam.scala
- Alphabetic
- By Inheritance
- QueryParamDecoder
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
implicit
val
FunctorQueryParamDecoder: Functor[QueryParamDecoder]
QueryParamDecoder is a covariant functor.
-
implicit
val
PlusEmptyQueryParamDecoder: MonoidK[QueryParamDecoder]
QueryParamDecoder is a MonoidK.
-
def
apply[T](implicit ev: QueryParamDecoder[T]): QueryParamDecoder[T]
summon an implicit QueryParamDecoder
- implicit lazy val booleanQueryParamDecoder: QueryParamDecoder[Boolean]
- implicit lazy val charQueryParamDecoder: QueryParamDecoder[Char]
- implicit lazy val doubleQueryParamDecoder: QueryParamDecoder[Double]
-
def
fail[A](sanitized: String, detail: String): QueryParamDecoder[A]
A decoder that always fails.
- implicit lazy val floatQueryParamDecoder: QueryParamDecoder[Float]
- def fromUnsafeCast[T](cast: (QueryParameterValue) ⇒ T)(typeName: String): QueryParamDecoder[T]
- implicit lazy val intQueryParamDecoder: QueryParamDecoder[Int]
- implicit lazy val longQueryParamDecoder: QueryParamDecoder[Long]
- implicit lazy val shortQueryParamDecoder: QueryParamDecoder[Short]
- implicit lazy val stringQueryParamDecoder: QueryParamDecoder[String]
-
def
success[A](a: A): QueryParamDecoder[A]
A decoder that always succeeds.
- implicit lazy val unitQueryParamDecoder: QueryParamDecoder[Unit]
- implicit val uriQueryParamDecoder: QueryParamDecoder[Uri]
Deprecated Value Members
-
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)