xtract
xtract copied to clipboard
A library to make it easy to deserialize XML to user types in scala
Generating the github pages for the documentation should be automated as a github actions workflow.
There aren't currently any tests or examples for the macro library. This should be rectified.
Lets say I have a xml data like below ``` xyz abc mno ``` if there was an error parsing second row (id=222), there is no way I found I...
I understand that the name of the project is xtract and that it focuses on XML deserialization, but there is no support for XML serialization. Have you explored supporting serialization?...
I have a case class that looks like this: ``` case class RootElement( foo: Option[Foo], bar: Option[Bar], baz: Option[Baz] ) ``` Foo, Bar, and Baz are all large and deeply-nested...
I have an XML element that looks like ```xml 4111111111111111 VISA ``` that I'm trying to write an XmlReader for. My case class looks like: ```scala case class Card( number:...
Since the `.children` uses `\ "_"` which skips Text nodes, there is no easy way to gather just text nodes or more generally, iterate over all nodes, including Text nodes,...
Not sure this is possible, but a scalajs version would be great!