xee-xpath 0.1.5

XPath 3.1 library API
Documentation
---
source: xee-xpath-compiler/tests/xpath.rs
expression: "run(\"[('a', 'b'), 2, 3](1)\")"
---
Ok(
    Many(
        Many {
            items: [
                Atomic(
                    String(
                        String,
                        "a",
                    ),
                ),
                Atomic(
                    String(
                        String,
                        "b",
                    ),
                ),
            ],
        },
    ),
)