Crates.io | int_hash |
lib.rs | int_hash |
version | 0.2.1 |
source | src |
created_at | 2018-06-20 18:06:26.030252 |
updated_at | 2018-12-09 18:56:30.699483 |
description | Very fast, very simple hash algorithm designed for use in integer hash maps & sets. |
homepage | |
repository | https://github.com/alexheretic/int-hash |
max_upload_size | |
id | 70987 |
size | 4,128,205 |
This crate attempts to provide the fastest option for integer key hashmaps in the Rust language.
While the function's performance does seem superior for 64-bit data in benchmarks, it does not clearly surpass fx-hash and seems to be more volatile in practice. Because of this I would recommend the rustc-hash crate for integer hash maps & sets.