You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 3, 2026. It is now read-only.
This crate now uses const generics, rather than the typenum crate, to encode numerical values in types. This means you can now use plain integers in the Bitmap type, eg. Bitmap<32>, rather than the old Bitmap<typenum::U32>. (#8, #9)
ADDED
Bitmap now implements Hash, Eq, PartialOrd and Ord. (#7)
The as_value() method has been added to Bitmap, to get a reference to the underlying value. (#7)
bitmaps::Iter now implements Clone and Debug. (#4)