Closed
Description
Just a note on the current implementation which stores the hash values per bucket as u64. We can't use more than usize
's bits of a hash to select a bucket anyway, so we only need to store that part in the table. This would be an improvement on 32-bit platforms to make the hashmap's data structures smaller, hopefully improving cache utilization during insert and lookup.