feat: Replace the fnv hashmap by the hashbrown one

This commit is contained in:
Clément Renault
2018-12-02 13:11:02 +01:00
parent 51cc69342f
commit e559f7130c
3 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,7 @@
use std::collections::HashMap;
use std::hash::Hash;
use hashbrown::HashMap;
pub struct DistinctMap<K> {
inner: HashMap<K, usize>,
limit: usize,