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

cats.xml.implicits.scala Maven / Gradle / Ivy

There is a newer version: 0.0.19
Show newest version
package cats.xml

import cats.xml.codec.{DecoderFailureSyntax, DecoderSyntax, EncoderSyntax}
import cats.xml.utils.DebugSyntax

object implicits extends AllSyntax

object syntax extends AllSyntax
private[xml] sealed trait AllSyntax
    extends XmlAttributeSyntax
    with DecoderFailureSyntax
    with XmlParserSyntax
    with EncoderSyntax
    with DecoderSyntax
    with DebugSyntax {

  implicit class XmlDataOptionOps[X <: Xml](opt: Option[X]) {
    def orXmlNull: X = opt.getOrElse(Xml.Null).asInstanceOf[X]
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy