pub trait IntoGridIter<I: Iterator<Item = T>, T> {
// Required method
fn into_grid_iter(self, columns: usize) -> GridIter<I, T>;
}
Expand description
IntoGridIter ist implemented for all iterators. Provides the grid function to wrap iterators with the Grid struct which contains the main functionality.