pub fn hash_set<T: Hash, H: Hasher>(set: &HashSet<T>, hasher: &mut H)
Expand description

Hash a HashSet.

The standard library does not provide (yet) a Hash implementation for the HashSet type. This can be used instead.

Note that this function not particularly strong and does not protect against DoS attacks.