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 e45ce2c commit 1746c26Copy full SHA for 1746c26
src/table/block/hash_index/reader.rs
@@ -28,16 +28,6 @@ impl<'a> Reader<'a> {
28
self.0.len()
29
}
30
31
- /// Returns the number of empty slots in the hash index.
32
- #[must_use]
33
- #[expect(
34
- clippy::naive_bytecount,
35
- reason = "only used in metrics, so no need to be hyper-optimized"
36
- )]
37
- pub fn free_count(&self) -> usize {
38
- self.0.iter().filter(|&&byte| byte == MARKER_FREE).count()
39
- }
40
-
41
/// Returns the number of conflict markers in the hash index.
42
#[must_use]
43
#[expect(
src/table/filter/mod.rs
@@ -4,7 +4,7 @@
4
5
pub mod bit_array;
6
pub mod block;
7
-pub mod blocked_bloom;
+// pub mod blocked_bloom;
8
pub mod standard_bloom;
9
10
use standard_bloom::Builder as StandardBloomFilterBuilder;
0 commit comments