QueryCodec

zio.http.codec.QueryCodec
object QueryCodec

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
QueryCodec.type

Members list

Value members

Inherited methods

def query(name: String): QueryCodec[String]

Attributes

Inherited from:
QueryCodecs (hidden)
def queryAll(name: String): QueryCodec[Chunk[String]]

Attributes

Inherited from:
QueryCodecs (hidden)
def queryAllBool(name: String): QueryCodec[Chunk[Boolean]]

Attributes

Inherited from:
QueryCodecs (hidden)
def queryAllInt(name: String): QueryCodec[Chunk[Int]]

Attributes

Inherited from:
QueryCodecs (hidden)
def queryAllTo[A](name: String)(implicit codec: TextCodec[A]): QueryCodec[Chunk[A]]

Attributes

Inherited from:
QueryCodecs (hidden)
def queryBool(name: String): QueryCodec[Boolean]

Attributes

Inherited from:
QueryCodecs (hidden)
def queryInt(name: String): QueryCodec[Int]

Attributes

Inherited from:
QueryCodecs (hidden)
def queryTo[A](name: String)(implicit codec: TextCodec[A]): QueryCodec[A]

Attributes

Inherited from:
QueryCodecs (hidden)