lib.rs |
Fast, non-cryptographic hash used by rustc and Firefox.
# Example
```rust
# #[cfg(feature = "std")]
# fn main() {
use rustc_hash::FxHashMap;
let mut map: FxHashMap<u32, u32> = FxHashMap::default();
map.insert(22, 44);
# }
# #[cfg(not(feature = "std"))]
# fn main() { }
``` |
4506 |