1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! A collection of data structures and algorithms designed for performance.

/// A collection of list data structures and algorithms designed for
/// performance
pub mod lists {
    pub use deepmesa_lists::linkedlist::list::FastLinkedList;
    /// This module contains structs specific to the [`FastLinkedList`]
    pub mod linkedlist {
        pub use deepmesa_lists::linkedlist::node::Node;
    }
}