Crate integer_hasher

Source

Structs§

IntHasher
For an enabled type T, a IntHasher<T> implements std::hash::Hasher and uses the value set by one of the write_{u8, u16, u32, u64, usize, i8, i16, i32, i64, isize} methods as its hash output.

Traits§

IsEnabled
Types which are safe to use with IntHasher.

Type Aliases§

BuildIntHasher
An alias for BuildHasherDefault for use with IntHasher.
IntMapstd
A HashMap with an integer domain, using IntHasher to perform no hashing at all.
IntSetstd
A HashSet of integers, using IntHasher to perform no hashing at all.