Skip to content
This repository was archived by the owner on May 3, 2026. It is now read-only.

3.0.0

Choose a tag to compare

@bodil bodil released this 30 Apr 09:40
· 15 commits to master since this release
v3.0.0
015af24

CHANGED

  • 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)