org.virtuslab.yaml.YamlCodec.scala Maven / Gradle / Ivy
package org.virtuslab.yaml
/**
* A type class that provides both-way conversion between [[Node]] and [[T]]
*/
trait YamlCodec[T] extends YamlDecoder[T] with YamlEncoder[T]
object YamlCodec extends YamlCodecCompanionCrossCompat