Skip to content

Commit

Permalink
stub is_subset
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Apr 3, 2023
1 parent 1cb6cca commit 9d76adf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/common/src/hash/key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,15 @@ impl NullBitmap {
fn estimated_heap_size(&self) -> usize {
8
}
fn len(&mut self) -> usize {
fn len(&self) -> usize {
self.inner.len()
}
fn contains(&mut self, x: usize) -> bool {
fn contains(&self, x: usize) -> bool {
self.inner.contains(x)
}
pub fn is_subset(&self, other: &FixedBitSet) -> bool {
todo!()
}
}

/// A wrapper for u64 hash result.
Expand Down

0 comments on commit 9d76adf

Please sign in to comment.