Type Alias Grid

Source
pub type Grid<T> = (usize, usize, Vec<T>);
Expand description

A parsed grid: (number of rows, number of columns, data).