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