1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Dictionary data structures implemented with an AVL tree (nearly balanced binary search tree).

#[doc(inline)]
pub use map::AvlTreeMap;

#[doc(inline)]
pub use set::AvlTreeSet;

pub mod map;
pub mod set;

#[cfg(test)]
mod tests;