We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0479b0 commit a447b68Copy full SHA for a447b68
src/combinations.rs
@@ -39,6 +39,8 @@ pub struct CombinationsGeneric<I: Iterator, Idx> {
39
first: bool,
40
}
41
42
+/// A type holding indices of elements in a pool or buffer of items from an inner iterator
43
+/// and used to pick out different combinations in a generic way.
44
pub trait PoolIndex<T>: BorrowMut<[usize]> {
45
type Item;
46
0 commit comments