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

sbt.internal.util.Show.scala Maven / Gradle / Ivy

The newest version!
package sbt.internal.util

trait Show[T] {
  def apply(t: T): String
}
object Show {
  def apply[T](f: T => String): Show[T] = new Show[T] { def apply(t: T): String = f(t) }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy