pub trait MinHashIterator<Word: Min + Eq, const PERMUTATIONS: usize> {
// Required method
fn intersection(self) -> MinHash<Word, PERMUTATIONS>;
}
Required Methods§
Sourcefn intersection(self) -> MinHash<Word, PERMUTATIONS>
fn intersection(self) -> MinHash<Word, PERMUTATIONS>
Returns a MinHash that is the intersection of all MinHashes in the iterator.
§Example
use minhash_rs::prelude::*;