All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.lemonlabs.uri.decoding.UriDecoder.scala Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package io.lemonlabs.uri.decoding

trait UriDecoder extends Product with Serializable {
  def decode(u: String): String

  def decodeTuple(kv: (String, Option[String])) =
    decode(kv._1) -> kv._2.map(decode)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy