Type Definition prehash::PrehashedSet

source ·
pub type PrehashedSet<T> = HashSet<Prehashed<T, u64>, BuildHasherDefault<Passthru>>;
Available on crate feature std only.
Expand description

A standard hash set with Prehashed elements and Passthru hashing.

Security

If the hash function used for prehashing is weak, the set may be vulnerable to Denial of Service attacks.