fix missing import

main
Ziyang Hu 1 year ago
parent ba98a5c137
commit f32c4a5450

@ -326,6 +326,8 @@ impl HashValues {
} }
#[cfg(test)] #[cfg(test)]
pub(crate) fn jaccard(&self, other_minhash: &Self) -> f32 { pub(crate) fn jaccard(&self, other_minhash: &Self) -> f32 {
use itertools::Itertools;
let matches = self let matches = self
.0 .0
.iter() .iter()

Loading…
Cancel
Save