#![allow(clippy::module_name_repetitions)]
#![allow(clippy::default_trait_access)]
#![allow(clippy::missing_errors_doc)]
mod edge;
pub use self::edge::{HalfEdge, HalfEdgeRef, HalfEdgeTreeNodeRef};
mod node;
pub use self::node::{DepthFirstDescendantsIter, InnerNode, LeafNode, Node, NodeValue};
mod node_id;
pub use self::node_id::NodeId;
mod path;
pub use self::path::{PathSegment, PathSegmentRef, RootPath, SegmentedPath};
mod tree;
pub use self::tree::{
AncestorTreeNodeIter, InsertOrUpdateNodeValueError, MatchNodePath, MatchedNodePath,
ParentChildTreeNode, PathTree, PathTreeTypes, RemovedSubtree, ResolvedNodePath, TreeNode,
};
#[cfg(feature = "im")]
type HashMap<K, V> = im::HashMap<K, V>;
#[cfg(not(feature = "im"))]
type HashMap<K, V> = std::collections::HashMap<K, V>;
#[cfg(test)]
mod tests;