1//! Holds the definition of [`FixedArray`]. 2 3mod const_fixed_array; 4pub use const_fixed_array::*; 5 6mod const_buffer; 7pub use const_buffer::*; 8 9#[allow(clippy::module_inception)] 10mod fixed_array; 11pub use fixed_array::*;