devela 0.27.0

A development layer of coherence.
Documentation
// devela::data::layout::array::vec
//
//! Dynamic arrays.
//!
//! Vectors are random-access, sequentially allocated, *dynamically* sized,
//! homogeneous data structures.
//

mod _reexport_alloc;

mod chunk; // VecChunk
mod ext; // VecExt
// mod d2; // Vec2d WIP
// mod hvec; // HVec ? WIP

crate::structural_mods! { // _mods, _reexports
    _mods {
        pub use super::{
            chunk::*,
            ext::*,
        };
        // pub use super::d2::_all::*;
        // pub use super::hvec::_all::*;
    }
    _reexports {
        pub use super::_reexport_alloc::*;
    }
}