pub type ArrayCombinations<I, const K: usize> = CombinationsGeneric<I, [usize; K]>;Expand description
Iterator for const generic combinations returned by .array_combinations()
Aliased Type§
pub struct ArrayCombinations<I, const K: usize> {
indices: [usize; K],
pool: LazyBuffer<I>,
first: bool,
}Fields§
§indices: [usize; K]§pool: LazyBuffer<I>§first: bool