1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Dense bitset implementation

mod imp;
mod iter;
mod ops;

/// A dense bitset
#[repr(transparent)]
pub struct Bitset {
    bitset: ffi::bitset_t,
}

pub use self::iter::BitsetIterator;

unsafe impl Sync for Bitset {}
unsafe impl Send for Bitset {}