sbt/util/collection/Show.scala

5 lines
55 B
Scala
Raw Normal View History

package sbt
trait Show[T] {
def apply(t: T): String
}