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

ujson.Transformer.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0-M2
Show newest version
package ujson
import upickle.core.Visitor

trait Transformer[I] {
  def transform[T](j: I, f: Visitor[_, T]): T
  def transformable[T](j: I) = Readable.fromTransformer(j, this)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy