AtomSet

Type Alias AtomSet 

Source
pub type AtomSet = HashSet<Atom, BuildHasherDefault<IdentityHasher>>;
Expand description

A high-performance HashSet using Atom as the key.

This set is significantly faster than a standard HashSet because it uses the Atom’s pre-computed hash.

Aliased Type§

pub struct AtomSet { /* private fields */ }