Searched refs:a_bigrams (Results 1 – 1 of 1) sorted by relevance
460 let mut a_bigrams: HashMap<(char, char), usize> = HashMap::new(); in sorensen_dice() localVariable463 *a_bigrams.entry(bigram).or_insert(0) += 1; in sorensen_dice()469 a_bigrams.entry(bigram).and_modify(|bi| { in sorensen_dice()