grixy 0.5.0

2-dimensional grids
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Unchecked operations for grids.
//!
//! These traits and operations allow for unchecked access to grid elements, bypassing safety
//! checks. They are intended for use in performance-critical code where the caller guarantees that
//! the operations are safe.

mod read_unchecked;
mod trusted_size;
mod write_unchecked;

pub use read_unchecked::GridReadUnchecked;
pub use trusted_size::TrustedSizeGrid;
pub use write_unchecked::GridWriteUnchecked;