devela 0.27.0

A development layer of coherence.
Documentation
// devela::data::layout::array
//
#![doc = crate::_DOC_DATA_LAYOUT_ARRAY!()] // public
#![doc = crate::_doc!(modules: crate::data::layout; array)]
#![doc = crate::_doc!(flat:"data")]
#![doc = crate::_doc!(extends: array, vec)]
//!
//! They enable efficient iterable storage over a sequence of the same type.
//

mod _reexport_core;

mod adt; // DataArray
mod d1; // 1-dimensional Array
mod d2; // 2-dimensional Array2d
mod ext; // ArrayExt, ArrayFmt
mod from; // ArrayFrom
mod init; // init_array!

#[cfg(feature = "alloc")]
#[cfg_attr(nightly_doc, doc(cfg(feature = "alloc")))]
mod vec;

crate::structural_mods! { // _mods, _reexports
    _mods {
        pub use super::{
            adt::*,
            d1::_all::*,
            d2::_all::*,
            ext::*,
            from::*,
            init::*,
        };

        #[cfg(feature = "alloc")]
        pub use super::vec::_all::*;
    }
    _reexports {
        pub use super::_reexport_core::*;
    }
}