1 2 3 4 5 6 7 8 9 10
//! Self-adjusting binary search tree with the additional property that recently accessed elements //! are quick to access again. mod map; mod node; mod set; mod tree; pub use self::map::SplayMap; pub use self::set::SplaySet;