
io.lemonlabs.uri.decoding.UriDecoder.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-uri_sjs1_2.12 Show documentation
Show all versions of scala-uri_sjs1_2.12 Show documentation
Simple scala library for building and parsing URIs
The newest version!
package io.lemonlabs.uri.decoding
trait UriDecoder extends Product with Serializable {
def decodeBytes(data: String, charset: String): Array[Byte]
def decode(u: String): String
def decodeTuple(kv: (String, Option[String])) =
decode(kv._1) -> kv._2.map(decode)
def +(other: UriDecoder) = ChainedUriDecoder(this :: other :: Nil)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy