Expand description
A speedy, non-cryptographic hashing algorithm used by rustc.
Fork of rustc-hash.
This is for personal usage only, please use rustc-hash.
§Example
use fx_hash::{FxHashMap, FxHashMapExt};
let mut map: FxHashMap<u32, u32> = FxHashMap::new();
map.insert(22, 44);Structs§
- FxBuild
Hasher - An implementation of
BuildHasherthat producesFxHashers. - FxHasher
- A speedy hash algorithm for use within rustc. The hashmap in liballoc by default uses SipHash which isn’t quite as speedy as we want. In the compiler we’re not really worried about DOS attempts, so we use a fast non-cryptographic hash.
- FxSeeded
State FxSeededStateis an alternative state forHashMaptypes, allowing to useFxHasherwith a set seed.
Traits§
- FxHash
MapExt - A trait to add a
newconstructor forFxHashMap. - FxHash
SetExt - A trait to add a
newconstructor forFxHashSet.
Type Aliases§
- FxHash
Map - Type alias for a hash map that uses the Fx hashing algorithm.
- FxHash
MapSeed - Type alias for a hashmap using the
fxhash algorithm withFxSeededState. - FxHash
Set - Type alias for a hash set that uses the Fx hashing algorithm.
- FxHash
SetSeed - Type alias for a hashmap using the
fxhash algorithm withFxSeededState.