pub fn large_combination<'a, T, F>(domain: &'a [T], r: usize, cb: F)Expand description
Generate a r-combination from given domain and call callback function on each combination.
§Parameter
domain : &[T]- A slice contain a domain to generate r-combinationr : usize- A size of combinationcb : FnMut(&[&T])- A callback that return each combination
§Panic
It panic when r > domain.len()