pub fn tuple_combinations<T, I>(iter: I) -> TupleCombinations<I, T> where
    I: Iterator + Clone,
    I::Item: Clone,
    T: HasCombination<I>,
Expand description

Create a new TupleCombinations from a clonable iterator.