indexed_bitvec/lib.rs
1/*
2 Copyright 2018 DarkOtter
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16//! Operations to create indexes used to perform
17//! fast rank & select operations on bitvectors.
18
19extern crate serde;
20#[macro_use]
21extern crate serde_derive;
22
23extern crate indexed_bitvec_core;
24
25#[cfg(feature = "implement_heapsize")]
26extern crate heapsize;
27
28#[cfg(test)]
29extern crate quickcheck;
30#[cfg(test)]
31#[macro_use]
32extern crate proptest;
33#[cfg(test)]
34extern crate bincode;
35
36pub mod bits;
37pub use crate::bits::Bits;
38
39mod indexed_bits;
40pub use crate::indexed_bits::IndexedBits;