const_sized_bit_set 0.5.0

Bitsets of all sizes an extensive array of associated functions.
Documentation
1
2
3
4
5
6
use crate::prelude::*;

pub trait CollectIntoBitSet<T: BitSet>{
    ///Extend the `set` with all elements from self.
    fn collect_into_bit_set(self, set: &mut T);
}