convert/http/query
Values
pub fn decode(
query: List(#(String, String)),
converter: convert.Converter(a),
) -> Result(a, List(decode.DecodeError))
pub fn decode_value(
of: convert.GlitrType,
) -> fn(List(#(String, String))) -> Result(
convert.GlitrValue,
List(decode.DecodeError),
)
pub fn encode(
value: a,
converter: convert.Converter(a),
) -> List(#(String, String))
pub fn encode_value(
val: convert.GlitrValue,
) -> List(#(String, String))