1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct BitSetIncludingEmptyIterator<'a, BSA: BitSetAware>
{
bit_set: &'a BitSet<BSA>,
word_index: usize,
relative_bit_index_within_word: usize,
}
impl<'a, BSA: BitSetAware> Iterator for BitSetIncludingEmptyIterator<'a, BSA>
{
type Item = Option<BSA>;
#[inline(always)]
fn next(&mut self) -> Option<Self::Item>
{
if unlikely!(self.word_index == self.bit_set.0.len())
{
return None
}
let word = * self.bit_set.0.get_unchecked_safe(self.word_index);
let outcome = if word & (1 << self.relative_bit_index_within_word) == 0
{
None
}
else
{
Some(BSA::hydrate(((self.word_index * size_of::<usize>() * BitsInAByte) + self.relative_bit_index_within_word) as u16))
};
if self.relative_bit_index_within_word == (BitSet::<BSA>::BitsInAWord - 1)
{
self.word_index += 1;
self.relative_bit_index_within_word = 0;
}
else
{
self.relative_bit_index_within_word += 1;
}
Some(outcome)
}
}