https://docs.rs/grounded/latest/grounded/uninit/struct.GroundedArrayCell.html is essentially the "pool storage", you could do a lot of productive damage with: ```rust struct Pool { used: [AtomicBool; N], storage: GroundedArrayCell, } impl Pool { const fn new() -> Self { Self { used: const { [AtomicBool::new(false); N] }, storage: GroundedArrayCell::uninit(), } } } ```