xee-xpath 0.1.5

XPath 3.1 library API
Documentation
---
source: xee-xpath-compiler/tests/xpath.rs
expression: "run(\"1 ! (. , 0)\")"
---
Ok(
    Many(
        Many {
            items: [
                Atomic(
                    Integer(
                        Integer,
                        1,
                    ),
                ),
                Atomic(
                    Integer(
                        Integer,
                        0,
                    ),
                ),
            ],
        },
    ),
)