standard_lib/collections/linked/
mod.rs

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