Han-Bit Kang

Results 3 issues of Han-Bit Kang

Code: ``` use hibitset::*; fn main() { let mut a = BitSet::new(); let mut b = BitSet::new(); assert!( a.is_empty() && b.is_empty(), "This shouldn't happen!"); a.add(0); b.add(10); assert!( !a.is_empty() && !b.is_empty(),...

Currently, almost all unwrap and other potential errors cause the application to terminate. Proper error handling will be helpful in the long run.

enhancement