contain-rs / bit-set

A Set of Bits
Apache License 2.0
63 stars 25 forks source link

Fix BlockIter::size_hint upper bound #26

Closed axelf4 closed 2 months ago

axelf4 commented 2 years ago

This pull request fixes an issue with BlockIter possibly returning a too low upper bound on its number of elements.

The current block (self.head) can contribute up to B::bits() elements, not just one.

pczarn commented 2 months ago

Thanks!