kg-tree 0.2.1

Generic object tree with Opath query language, similar to XPath.
use super::*;
use self::expr::*;
use crate::diff::*;

pub use self::cache::{NodePathCache, NodePathLruCache, OpathCache};
pub use self::expr::func::{
    Args, Func, FuncCallError, FuncCallResult, FuncCallable, FuncId, Method, MethodCallable,
    MethodId,
};
pub use self::expr::parse::{Error as OpathParseError, Parser};
pub use self::expr::{
    Env, ExprErrorDetail, ExprResult, FuncCallErrorDetail, NodeBuf, NodeSet, Scope, ScopeMut,
};
pub use self::interpolation::Interpolation;
pub use self::matcher::NodePathMatcher;
pub use self::opath::Opath;
pub use self::resolve::{
    DefaultResolveStrategy, ResolveStrategy, RootedResolveStrategy, TreeResolver,
};

mod cache;
mod expr;
mod interpolation;
mod matcher;
mod opath;
mod resolve;