Expand description
Bloomur
§Installation
-
Default
[dependencies] bloomur = "0.1"
-
Using in
no_std
[dependencies] bloomur = { version = "0.1", default-features = false }
-
Using with
alloc
only[dependencies] bloomur = { version = "0.1", default-features = false, features = ["alloc"] }
§License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Re-exports§
pub use hasher::BloomHasher;
Modules§
- hasher
- Hashers for bloomfilter.
Structs§
- Filter
std
oralloc
- A bloom filter builder.
- Frozen
Filter std
oralloc
- A frozen filter.
Functions§
- bits_
per_ key std
oralloc
- Returns the bits per key required by bloomfilter based on the false positive rate.