rs-avl 0.1.0

A generic AVL tree with range queries and traversal iterators
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Generic AVL tree implementation.

mod iter;
mod node;
mod tree;

pub use iter::{Iter, LevelOrder, PostOrder, PreOrder, Range};
pub use node::AVLNode;
pub use tree::AvlTree;

/// Compatibility spelling for code that uses the acronym in capitals.
pub type AVLTree<T> = AvlTree<T>;