Module std::collections::hash_setStable [-] [+] [src]

A hashset

Structs

Difference

Difference iterator

Drain

HashSet drain iterator

HashSet

An implementation of a hash set using the underlying representation of a HashMap where the value is (). As with the HashMap type, a HashSet requires that the elements implement the Eq and Hash traits. This can frequently be achieved by using #[derive(Eq, Hash)]. If you implement these yourself, it is important that the following property holds:

Intersection

Intersection iterator

IntoIter

HashSet move iterator

Iter

HashSet iterator

SymmetricDifference

Symmetric difference iterator.

Union

Set union iterator.