1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Module for simple heap arrays. `ThinPtrArray` and `AtomicPtrArray` are
//! a single word on the stack, whereas `FatPtrArray` is a 2-word struct.

mod atomic;
mod fat;
pub mod iter;
mod thin;

pub use crate::prelude::*;
pub use atomic::AtomicPtrArray;
pub use fat::FatPtrArray;
pub use thin::ThinPtrArray;