pub type Combinations<I> = CombinationsGeneric<I, Vec<usize>>;
Expand description
Iterator for Vec
valued combinations returned by .combinations()
Aliased Type§
struct Combinations<I> {
indices: Vec<usize>,
pool: LazyBuffer<I>,
first: bool,
}
Fields§
§indices: Vec<usize>
§pool: LazyBuffer<I>
§first: bool