pub fn multi_cartesian_product<H>(
    iters: H,
) -> MultiProduct<<H::Item as IntoIterator>::IntoIter> 
Expand description

Create a new cartesian product iterator over an arbitrary number of iterators of the same type.

Iterator element is of type Vec<H::Item::Item>.