Adds an iterator, like Ones, named Zeroes that iterates over the unset bits in a bitset.
Note this is likely a bit less efficient than the Ones iterator due to it needing to ensure that the trailing zeros in the last block are not included in the results.
Added a test to ensure it was working as expected.
Adds an iterator, like
Ones
, namedZeroes
that iterates over the unset bits in a bitset.Note this is likely a bit less efficient than the
Ones
iterator due to it needing to ensure that the trailing zeros in the last block are not included in the results.Added a test to ensure it was working as expected.
Fixes #7. Fixes #9. Supersedes #32. Supersedes #10.