1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
// Setup clippy
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]
#![no_std]

// Use std for testing purposes
#[cfg(test)]
#[macro_use]
extern crate std;




extern crate generic_array;
extern crate typenum;

pub mod bitset;
pub mod iter;

pub use bitset::*;
pub use iter::*;