pub type CartesianProductIntoCellParams<'a, T> = (&'a [&'a [T]], Rc<RefCell<&'a mut [&'a T]>>);Expand description
A type that represent a cartesian product of the slice over slices and return result into Rc<RefCell<&mut [&T]>> by using CartesianProductCellIter
§Format
- A mutable slice of slices. It’s a domains to of a cartesian product operation.
- An Rc<RefCell<&mut[&T]>. It’s a result container.