pub trait Set: Copy + Clone + Default + Eq + PartialEq + Debug + Hash {
    const N: usize;
}
Expand description

The main trait represents a bitset.

Required Associated Constants

Integer representation of the bitset.

Implementors