Skip to main content

FastHashMapArena

Type Alias FastHashMapArena 

Source
pub type FastHashMapArena = Arena<FastHashMap>;
Expand description

Fast hash arena using ahash (requires refcount-fast-hash feature).

Uses ahash instead of SipHash for improved throughput on large collections. Not DOS-resistant, suitable for local, non-hostile environments.

Aliased Type§

pub struct FastHashMapArena {
    state: RefCell<ArenaState<HashMap<usize, Entry, RandomState>>>,
    _nosend: PhantomData<Rc<()>>,
}

Fields§

§state: RefCell<ArenaState<HashMap<usize, Entry, RandomState>>>§_nosend: PhantomData<Rc<()>>