1
2
3
4
5
6
7
8
9
10
//! default hashing types with custom hasher
use std::collections::{HashMap, HashSet};

use ahash::RandomState;

pub type FastHasher = RandomState;
/// FastHashMap using ahash
pub type FastHashMap<K, V> = HashMap<K, V, FastHasher>;
/// FastHashSet using ahash
pub type FastHashSet<V> = HashSet<V, FastHasher>;