/// Use alloc crate for no_std support
extern crate alloc;
use ;
/// GridMap of cells
/// Trait to implement to cells inserted in the gridmap
/// Define how to transform a map
/// Utility functions
/// Chunk of cells
pub type Chunk<A, const D: usize> = ;