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

harness.sql.query.Constant.scala Maven / Gradle / Ivy

There is a newer version: 5.1.3
Show newest version
package harness.sql.query

final case class Constant[T](value: T) {
  def map[T2](f: T => T2): Constant[T2] = Constant(f(value))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy