devela 0.27.0

A development layer of coherence.
Documentation
// devela::data::layout::stack
//
#![doc = crate::_DOC_DATA_LAYOUT_STACK!()] // private
#![doc = crate::_doc!(modules: crate::data::layout; stack)]
#![doc = crate::_doc!(flat:"data")]
#![doc = crate::_doc!(hr)]
//!
//! Elements are added and removed from the same end,
//! commonly referred to as the "top" of the stack.
//!
//! Stacks are ideal for managing nested or temporary operations.
//

mod adt;
#[cfg(_stack··)]
mod stack;

crate::structural_mods! { // _mods
    _mods {
        pub use super::adt::*;
        #[cfg(_stack··)]
        pub use super::stack::_all::*;
    }
}