Type Alias StdHash

Source
pub type StdHash<'l, Item> = CollectionSet<'l, HashSet<Item>>;
Available on crate feature std-hash only.
Expand description

std::collections::HashSet-based implementation

On my machine, time to check for existence is flat 10ns

Aliased Type§

struct StdHash<'l, Item>(CollectionRepr<'l, HashSet<Item>>);

Fields§

§0: CollectionRepr<'l, HashSet<Item>>