Skip to content

rescript-iof-xml

IOF XML 3.0 types and parser for ReScript

Usage

rescript
let xml = "<EntryList>...</EntryList>"
switch IofXml.EntryList.parse(xml) {
| Ok(entryList) => Console.log(entryList)
| Error(msg) => Console.error(msg)
}