std::collections

Module hash_set

1.0.0 · Source
Expand description

A hash set implemented as a HashMap where the value is ().

Structs§

  • A lazy iterator producing elements in the difference of HashSets.
  • A draining iterator over the items of a HashSet.
  • A hash set implemented as a HashMap where the value is ().
  • A lazy iterator producing elements in the intersection of HashSets.
  • An owning iterator over the items of a HashSet.
  • An iterator over the items of a HashSet.
  • A lazy iterator producing elements in the symmetric difference of HashSets.
  • A lazy iterator producing elements in the union of HashSets.
  • ExtractIfExperimental
    A draining, filtering iterator over the items of a HashSet.
  • OccupiedEntryExperimental
    A view into an occupied entry in a HashSet. It is part of the Entry enum.
  • VacantEntryExperimental
    A view into a vacant entry in a HashSet. It is part of the Entry enum.

Enums§

  • EntryExperimental
    A view into a single entry in a set, which may either be vacant or occupied.