We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aed7e6b commit 9692311Copy full SHA for 9692311
src/data_structures/probabilistic/bloom_filter.rs
@@ -23,7 +23,6 @@ pub trait BloomFilter<Item: Hash> {
23
/// If it's `true` the item may be present, or maybe another one produces the same hash
24
#[allow(dead_code)]
25
#[derive(Debug)]
26
-#[allow(dead_code)]
27
struct BasicBloomFilter<const CAPACITY: usize> {
28
vec: [bool; CAPACITY],
29
}
0 commit comments