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