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

#![no_std]
extern crate alloc;

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

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

pub mod map;
pub mod set;

#[cfg(test)]
mod tests;