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

com.sksamuel.elastic4s.Show.scala Maven / Gradle / Ivy

The newest version!
package com.sksamuel.elastic4s

trait Show[T] extends Serializable {
  def show(t: T): String
}

object Show {
  def apply[T: Show]: Show[T] = implicitly[Show[T]]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy