Crate fixedbitset_utils

Source
Expand description

A bunch of utility stuffs that I use when working with bitsets in Rust

Structsยง

BitSetIter
This structure defines an iterator capable of iterating over the 1-bits of a fixed bitset. It uses word representation of the items in the set, so it should be more efficient to use than a crude iteration over the elements of the set.
LexBitSet
A totally ordered Bitset wrapper. Useful to implement tie break mechanisms. This wrapper orders the bitsets according to the lexical order of their underlying bits.