devela/data/list/stack/mod.rs
1// devela::data::list::stack
2//
3//! Homogeneous data structures that process elements in
4//! <abbr title="Last-In, First-Out">LIFO</abbr> order.
5//!
6//! Elements are added and removed from the same end,
7//! commonly referred to as the "top" of the stack.
8//!
9//! Stacks are ideal for managing nested or temporary operations.
10//
11
12mod adt;
13#[cfg(_stack··)]
14mod stack;
15
16crate::items! { // structural access: _mods, _all
17 #[allow(unused)]
18 pub use _mods::*;
19
20 mod _mods { #![allow(unused)]
21 pub use super::adt::*;
22 #[cfg(_stack··)]
23 pub use super::stack::_all::*;
24 }
25 pub(super) mod _all { #![allow(unused)]
26 #[doc(inline)]
27 pub use super::_mods::*;
28 }
29}