xee_interpreter/pattern/
mod.rs

1// XSLT has template rules that match based on patterns, a subset of XPath.
2// This module contains the runtime to match items with patterns.
3
4mod mode;
5mod pattern_core;
6mod pattern_lookup;
7
8pub use mode::{ModeId, ModeLookup};
9pub(crate) use pattern_core::PredicateMatcher;