standard_lib/collections/linked/
mod.rs

1//! Linked collection types. Primarily revolves around [`LinkedList`] and its accompanying
2//! [`Cursor`] type.
3
4pub mod cursor;
5pub mod list;
6
7#[doc(inline)]
8pub use cursor::Cursor;
9#[doc(inline)]
10pub use list::LinkedList;