extended-collections 0.6.0

An extension to the collections in the standard library with various data structures.
Documentation
1
2
3
4
5
6
7
8
9
//! Probabilistic linked hierarchy of subsequences.

mod list;
mod map;
mod set;

pub use self::list::SkipList;
pub use self::map::SkipMap;
pub use self::set::SkipSet;