Go to file
openharmony_ci 1e15f31b0e
!2 Add OAT.xml and README.OpenSource
Merge pull request !2 from fangting/master
2023-04-14 08:11:01 +00:00
.github/workflows Add Github Actions (#10) 2020-05-18 11:19:04 -04:00
src Implement no_std mode 2020-02-08 08:17:43 -05:00
.gitignore Remove Cargo.lock 2018-05-28 17:57:47 +02:00
BUILD.gn Add GN Build Files and Custom Modifications 2023-04-12 17:26:54 +08:00
Cargo.toml Bump version to 1.1.0 (already published) 2020-08-15 10:37:11 -07:00
CODE_OF_CONDUCT.md add license files and code-of-conduct from rustc 2018-05-24 08:32:43 -04:00
LICENSE-APACHE add license files and code-of-conduct from rustc 2018-05-24 08:32:43 -04:00
LICENSE-MIT add license files and code-of-conduct from rustc 2018-05-24 08:32:43 -04:00
OAT.xml Add OAT.xml and README.OpenSource 2023-04-14 14:15:22 +08:00
README.md Bump version to 1.1.0 (already published) 2020-08-15 10:37:11 -07:00
README.OpenSource Add OAT.xml and README.OpenSource 2023-04-14 14:15:22 +08:00

rustc-hash

crates.io Documentation

A speedy hash algorithm used 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.

This is the same as the algorithm used by Firefox -- which is a homespun one not based on any widely-known algorithm -- though modified to produce 64-bit hash values instead of 32-bit hash values. It consistently out-performs an FNV-based hash within rustc itself -- the collision rate is similar or slightly worse than FNV, but the speed of the hash function itself is much higher because it works on up to 8 bytes at a time.

Usage

use rustc_hash::FxHashMap;

let mut map: FxHashMap<u32, u32> = FxHashMap::default();
map.insert(22, 44);

no_std

This crate can be used as a no_std crate by disabling the std feature, which is on by default, as follows:

rustc-hash = { version = "1.1", default-features = false }

In this configuration, FxHasher is the only export, and the FxHashMap/FxHashSet type aliases are omitted.