use HashMap as OriginalHashMap;
use HashSet as OriginalHashSet;
use BuildHasherDefault;
use XxHash64;
use IntMap;
/// Arbitrary HashMap using more performant hashing algorithm
pub type FullHashMap<K, V> = ;
/// Hashset using more performant hashing algorithm
pub type HashSet<K> = ;
/// HashMap for Int Types using more performant hashing algorithm
pub type HashMap<K,V> = ;