[][src]Trait iter_num_tools::grid::IntoGrid

pub trait IntoGrid {
    type Grid;
    pub fn into_grid(self) -> Self::Grid;
}

Trait used by grid

Associated Types

Loading content...

Required methods

pub fn into_grid(self) -> Self::Grid[src]

Loading content...

Implementations on Foreign Types

impl<I1, I2> IntoGrid for (I1, I2) where
    I1: Iterator + Itertools,
    I1::Item: Clone,
    I2: Iterator + Clone
[src]

type Grid = Grid2<I1, I2>

impl<I1, I2, I3> IntoGrid for (I1, I2, I3) where
    I1: Iterator + Itertools,
    I1::Item: Clone,
    I2: Iterator + Clone,
    I2::Item: Clone,
    I3: Iterator + Clone
[src]

type Grid = Grid3<I1, I2, I3>

impl<I1, I2, I3, I4> IntoGrid for (I1, I2, I3, I4) where
    I1: Iterator + Itertools,
    I1::Item: Clone,
    I2: Iterator + Clone,
    I2::Item: Clone,
    I3: Iterator + Clone,
    I3::Item: Clone,
    I4: Iterator + Clone
[src]

type Grid = Grid4<I1, I2, I3, I4>

Loading content...

Implementors

Loading content...