More progress.

This commit is contained in:
2018-01-07 14:52:50 +01:00
parent 0a91d99044
commit 27eb6b2a2c
2 changed files with 9 additions and 1 deletions

View File

@@ -247,6 +247,14 @@ impl<'a, T, B> ops::BitOr<&'a Self> for BitSet<T, B> where T: Block, B: Block {
self
}
}
pub struct Iter<'a, T: 'a, B: 'a> {
iter: std::collections::hash_map::Iter<'a, T, B>,
block: T,
bits: B,
bit: B,
}
/*
pub struct Iter<'a> {
iter: std::collections::hash_map::Iter<'a, u64, u64>,