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

izumi.functional.Renderable.scala Maven / Gradle / Ivy

There is a newer version: 1.2.15
Show newest version
package izumi.functional

trait Renderable[T] {
  def render(value: T): String
}

object Renderable extends WithRenderableSyntax {
  @inline def apply[T: Renderable]: Renderable[T] = implicitly
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy