
io.lemonlabs.uri.encoding.EncodeCharAs.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.encoding
/** Date: 28/08/2013
* Time: 21:07
*/
case class EncodeCharAs(ch: Char, as: String) extends UriEncoder {
def shouldEncode(x: Char) = x == ch
def encodeChar(x: Char) = as
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy