harness.sql.query.Constant.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of harness-sql_3 Show documentation
Show all versions of harness-sql_3 Show documentation
Miscellaneous libraries/utilities for Scala.
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