devela 0.27.0

A development layer of coherence.
Documentation
// devela::data::topol::linked
//
#![doc = crate::_DOC_DATA_TOPOL_LINKED!()] // private
#![doc = crate::_doc!(modules: crate::data::topol; linked)]
#![doc = crate::_doc!(flat:"data")]
#![doc = crate::_doc!(extends: collections)]
//!
//! They enable efficient insertion and deletion at any position,
//! storing a sequence of elements of the same type, each pointing to the next.
//

#[cfg(feature = "alloc")]
mod _reexport_alloc;

mod r#const; // ConstList[Iterator]

// #[cfg(_list1··)]
// mod l1;
// #[cfg(_list2··)]
// mod l2;

crate::structural_mods! { // _mods, _reexports
    _mods {
        pub use super::r#const::*;
        // pub use super::l1::*;
        // pub use super::l2::*;
    }
    _reexports {
        #[cfg(feature = "alloc")]
        pub use super::_reexport_alloc::*;
    }
}