xee-interpreter 0.2.0

Interpreter for XPath and XSLT
Documentation
#![allow(dead_code)]

#[macro_use]
extern crate num_derive;

pub mod atomic;
pub mod context;
pub mod declaration;
pub mod error;
pub mod function;
pub mod interpreter;
mod library;
pub mod occurrence;
pub mod pattern;
pub mod sequence;
pub mod span;
pub mod stack;
pub mod string;
pub mod xml;

pub use xee_name::{Name, Namespaces, VariableNames};