1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Bloom grouping.
//! 
//! Optimization gathering together blooms that are in the same index and are likely to be retrived together.

mod bridge;
mod chain;
mod database;
mod group;
mod position;

pub use self::bridge::GroupDatabaseBridge;
pub use self::chain::BloomGroupChain;

pub use self::database::BloomGroupDatabase;
pub use self::group::BloomGroup;
pub use self::position::GroupPosition;