devela/data/collections/list/mod.rs
// devela::data::collections::list
//
//! Linked lists.
//!
//! Linked lists are sequentially accessed, homogeneous data structures.
//!
//! They enable efficient insertion and deletion at any position,
//! storing a sequence of elements of the same type, each pointing to the next.
//
mod r#const;
crate::items! { // structural access: _mods, _all
#[allow(unused)]
pub use _mods::*;
mod _mods {
pub use super::r#const::*;
}
pub(super) mod _all {
#[doc(inline)]
pub use super::_mods::*;
}
}