1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![no_std]

extern crate alloc;

#[cfg(test)]
#[macro_use]
extern crate std;

mod block_grid;
mod block_width;
mod iters;

#[cfg(test)]
mod tests;

pub use crate::block_grid::{Block, BlockGrid, BlockMut};
pub use crate::block_width::*;
pub use crate::iters::CoordsIterator;

pub type Coords = (usize, usize);