ru.tinkoff.phobos.derevo.xmlDecoder.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phobos-derevo_2.13 Show documentation
Show all versions of phobos-derevo_2.13 Show documentation
Fast xml data binding library
The newest version!
package ru.tinkoff.phobos.derevo
import derevo.{Derevo, Derivation, delegating}
import ru.tinkoff.phobos.decoding.XmlDecoder
@delegating("ru.tinkoff.phobos.derivation.semiauto.deriveXmlDecoder")
object xmlDecoder extends Derivation[XmlDecoder] {
def apply[A](arg: String): XmlDecoder[A] = macro Derevo.delegateParam[XmlDecoder, A, String]
def apply[A, NS](arg1: String, arg2: NS): XmlDecoder[A] = macro Derevo.delegateParams2[XmlDecoder, A, String, NS]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy