
urldsl.vocabulary.ParamMatchOutput.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of url-dsl_sjs1_3 Show documentation
Show all versions of url-dsl_sjs1_3 Show documentation
A tiny library for parsing and creating urls in a type-safe way
The newest version!
package urldsl.vocabulary
final case class ParamMatchOutput[Q](output: Q, unusedParams: Map[String, Param]) {
def map[R](f: Q => R): ParamMatchOutput[R] = ParamMatchOutput(f(output), unusedParams)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy