IntoGridIter

Trait IntoGridIter 

Source
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.

Required Methods§

Source

fn into_grid_iter(self, columns: usize) -> GridIter<I, T>

Implementors§

Source§

impl<I: Iterator<Item = T>, T> IntoGridIter<I, T> for I