devela/data/list/array/
mod.rs

1// devela::data::list::array
2//
3//! Homogeneous data structures, random-access and sequentially allocated.
4//!
5#![doc = crate::doc_!(extends: array, vec)]
6//!
7//! They enable efficient iterable storage over a sequence of the same type.
8//
9
10mod adt; // DataArray
11mod d1; // 1-dimensional Array
12mod d2; // 2-dimensional Array2d
13mod ext; // ExtArray, ArrayFmt
14mod init; // array_init!
15mod reexports;
16
17#[cfg(feature = "alloc")]
18#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
19mod vec;
20
21crate::items! { // structural access: _mods, _all
22    #[allow(unused)]
23    pub use _mods::*;
24
25    mod _mods {
26        pub use super::{adt::*, d1::_all::*, d2::_all::*, ext::*, init::*, reexports::*};
27
28        #[cfg(feature = "alloc")]
29        pub use super::vec::_all::*;
30    }
31    pub(super) mod _all {
32        #[doc(inline)]
33        pub use super::_mods::*;
34    }
35    pub(super) mod _always { #![allow(unused)]
36        #[cfg(feature = "alloc")]
37        pub use super::vec::_always::*;
38    }
39}