//! Space-efficient probabilistic data structure for approximate membership queries in a set with
//! the ability to remove items.
const DEFAULT_ENTRIES_PER_INDEX: usize = 4;
const DEFAULT_FINGERPRINT_BIT_COUNT: usize = 8;
const DEFAULT_MAX_KICKS: usize = 512;
pub use CuckooFilter;
pub use ScalableCuckooFilter;