mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
Remove unused code from a bunch of crates
This commit is contained in:
parent
8b6ed3d182
commit
e64de8d90a
8 changed files with 6 additions and 74 deletions
|
@ -18,11 +18,6 @@ const KEY_MASK: u32 = (1 << KEY_SIZE) - 1;
|
|||
/// A counting Bloom filter with 8-bit counters.
|
||||
pub type BloomFilter = CountingBloomFilter<BloomStorageU8>;
|
||||
|
||||
/// A non-counting Bloom filter.
|
||||
///
|
||||
/// Effectively a counting Bloom filter with 1-bit counters.
|
||||
pub type NonCountingBloomFilter = CountingBloomFilter<BloomStorageBool>;
|
||||
|
||||
/// A counting Bloom filter with parameterized storage to handle
|
||||
/// counters of different sizes. For now we assume that having two hash
|
||||
/// functions is enough, but we may revisit that decision later.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue