[][src]Type Definition permutator::SelfCartesianProductIntoCellParams

type SelfCartesianProductIntoCellParams<'a, T> = (&'a [T], usize, Rc<RefCell<&'a mut [&'a T]>>);

A type that used exclusively for trait CartesianProduct. It return SelfCartesianProductCellIter.

Format

  1. A slice of T.
  2. How many time to create a product on slice
  3. An Rc<RefCell<&mut [T]>> to store each product on each iteration.

Trait Implementations

impl<'a, 'b: 'a, T> CartesianProduct<'a> for SelfCartesianProductIntoCellParams<'b, T> where
    T: 'b, 
[src]

type Producer = SelfCartesianProductCellIter<'b, T>