xee-interpreter 0.2.0

Interpreter for XPath and XSLT
Documentation
1
2
3
4
5
6
7
8
9
// XSLT has template rules that match based on patterns, a subset of XPath.
// This module contains the runtime to match items with patterns.

mod mode;
mod pattern_core;
mod pattern_lookup;

pub use mode::{ModeId, ModeLookup};
pub(crate) use pattern_core::PredicateMatcher;