1//! # skip-linked-list 2//! 3//! A skiplist-backed linked list that support fast random writes. 4 5pub mod list; 6pub use list::SkipLinkedList;