//! Generic AVL tree implementation.
moditer;modnode;modtree;pubuseiter::{Iter, LevelOrder, PostOrder, PreOrder, Range};pubusenode::AVLNode;pubusetree::AvlTree;/// Compatibility spelling for code that uses the acronym in capitals.
pubtypeAVLTree<T>=AvlTree<T>;