sbf 0.1.6

Spatial Bloom Filter, a probabilistic data structure that maps elements of a space to indexed disjoint subsets of that space.
Documentation
//! SBF is a probabilistic data structure that maps elements of a space to indexed disjoint subsets
//! of that space.
//!
//! This is a reimplementation of the [C library](https://github.com/spatialbloomfilter/libSBF-cpp)
//! by the original research group.

#![deny(
// Harden built-in lints
missing_copy_implementations,
missing_debug_implementations,
missing_docs,
unreachable_pub,

// Harden clippy lints
clippy::all,
)]

#[cfg(feature = "metrics")]
pub use metrics::Metrics;
pub use {
    data_structure::SBF,
    error::Error,
    types::{HashFunction, Salt},
};

pub mod data_structure;
pub mod error;
#[cfg(feature = "metrics")]
pub mod metrics;
pub mod types;

#[cfg(test)]
mod tests;