pub fn combinations_with_replacement<I>( iter: I, k: usize, ) -> CombinationsWithReplacement<I>where I: Iterator, I::Item: Clone,
Create a new CombinationsWithReplacement from a cloneable iterator.
CombinationsWithReplacement