bloomz 0.1.0

A fast, flexible Bloom filter library for Rust with parallel operations support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! bloomz: a fast, flexible bloom filter for rust
#![deny(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "std")]
extern crate std;

/// A bitset implementation for the bloom filter.
pub mod bitset;
/// Mathematical functions for calculating optimal bloom filter parameters.
pub mod math;
/// Hashing functions for the bloom filter.
pub mod hashing;
/// The bloom filter implementation.
pub mod bloom;

pub use bloom::BloomFilter;