We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 032d77f commit beab201Copy full SHA for beab201
src/bloom/blocked/mod.rs
@@ -1,6 +1,9 @@
1
-use crate::bloom::bit_array::BitArray;
+// Copyright (c) 2024-present, fjall-rs
2
+// This source code is licensed under both the Apache 2.0 and MIT License
3
+// (found in the LICENSE-* files in the repository)
4
5
use super::CompositeHash;
6
+use crate::bloom::bit_array::BitArray;
7
8
const CACHE_LINE_BYTES: usize = 64;
9
pub struct BlockedBloomFilter {
src/bloom/mod.rs
@@ -1,3 +1,7 @@
+
mod bit_array;
mod blocked;
mod standard;
0 commit comments