Struct moka_cht::map::HashMap[][src]

pub struct HashMap<K, V, S = DefaultHashBuilder> { /* fields omitted */ }
Expand description

A lock-free hash map implemented with bucket pointer arrays, open addressing, and linear probing.

This struct is re-exported as moka_cht::HashMap.

Examples

use moka_cht::HashMap;
use std::{sync::Arc, thread};

let map = Arc::new(HashMap::new());

let threads: Vec<_> = (0..16)
    .map(|i| {
        let map = map.clone();

        thread::spawn(move || {
            const NUM_INSERTIONS: usize = 64;

            for j in (i * NUM_INSERTIONS)..((i + 1) * NUM_INSERTIONS) {
                map.insert_and(j, j, |_prev| unreachable!());
            }
        })
    })
    .collect();

let _: Vec<_> = threads.into_iter().map(|t| t.join()).collect();

Hashing Algorithm

By default, HashMap uses a hashing algorithm selected to provide resistance against HashDoS attacks. It will be the same one used by std::collections::HashMap, which is currently SipHash 1-3.

While SipHash’s performance is very competitive for medium sized keys, other hashing algorithms will outperform it for small keys such as integers as well as large keys such as long strings. However those algorithms will typically not protect against attacks such as HashDoS.

The hashing algorithm can be replaced on a per-HashMap basis using one of the following methods:

Many alternative algorithms are available on crates.io, such as the aHash crate.

It is required that the keys implement the Eq and Hash traits, although this can frequently be achieved by using #[derive(PartialEq, Eq, Hash)]. If you implement these yourself, it is important that the following property holds:

k1 == k2 -> hash(k1) == hash(k2)

In other words, if two keys are equal, their hashes must be equal.

It is a logic error for a key to be modified in such a way that the key’s hash, as determined by the Hash trait, or its equality, as determined by the Eq trait, changes while it is in the map. This is normally only possible through Cell, RefCell, global state, I/O, or unsafe code.

Implementations

Creates an empty HashMap.

The hash map is initially created with a capacity of 0, so it will not allocate a bucket pointer array until it is first inserted into.

Creates an empty HashMap with the specified capacity.

The hash map will be able to hold at least capacity elements without reallocating its bucket pointer array. If capacity is 0, the hash map will not allocate.

Creates an empty HashMap which will use the given hash builder to hash keys.

The hash map is initially created with a capacity of 0, so it will not allocate a bucket pointer array until it is first inserted into.

Creates an empty HashMap with the specified capacity, using build_hasher to hash the keys.

The hash map will be able to hold at least capacity elements without reallocating its bucket pointer array. If capacity is 0, the hash map will not allocate.

Returns the number of elements in the map.

Safety

This method on its own is safe, but other threads can add or remove elements at any time.

Returns true if the map contains no elements.

Safety

This method on its own is safe, but other threads can add or remove elements at any time.

Returns the number of elements the map can hold without reallocating its bucket pointer array.

Note that all mutating operations except removal will result in a bucket being allocated or reallocated.

Safety

This method on its own is safe, but other threads can increase the capacity at any time by adding elements.

Returns a clone of the value corresponding to the key.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

Returns a clone of the the key-value pair corresponding to the supplied key.

The supplied key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

Returns the result of invoking a function with a reference to the value corresponding to the key.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

Returns the result of invoking a function with a reference to the key-value pair corresponding to the supplied key.

The supplied key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

Inserts a key-value pair into the map, returning a clone of the value previously corresponding to the key.

If the map did have this key present, both the key and value are updated.

pub fn insert_entry(&self, key: K, value: V) -> Option<(K, V)> where
    K: Clone,
    V: Clone

Inserts a key-value pair into the map, returning a clone of the key-value pair previously corresponding to the supplied key.

If the map did have this key present, both the key and value are updated.

Inserts a key-value pair into the map, returning the result of invoking a function with a reference to the value previously corresponding to the key.

If the map did have this key present, both the key and value are updated.

pub fn insert_entry_and<F: FnOnce(&K, &V) -> T, T>(
    &self,
    key: K,
    value: V,
    with_previous_entry: F
) -> Option<T>

Inserts a key-value pair into the map, returning the result of invoking a function with a reference to the key-value pair previously corresponding to the supplied key.

If the map did have this key present, both the key and value are updated.

Removes a key from the map, returning a clone of the value previously corresponding to the key.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

pub fn remove_entry<Q: Hash + Eq + ?Sized>(&self, key: &Q) -> Option<(K, V)> where
    K: Borrow<Q> + Clone,
    V: Clone

Removes a key from the map, returning a clone of the key-value pair previously corresponding to the key.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

Remove a key from the map, returning the result of invoking a function with a reference to the value previously corresponding to the key.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

pub fn remove_entry_and<Q: Hash + Eq + ?Sized, F: FnOnce(&K, &V) -> T, T>(
    &self,
    key: &Q,
    with_previous_entry: F
) -> Option<T> where
    K: Borrow<Q>, 

Removes a key from the map, returning the result of invoking a function with a reference to the key-value pair previously corresponding to the key.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

Removes a key from the map if a condition is met, returning a clone of the value previously corresponding to the key.

condition will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

pub fn remove_entry_if<Q: Hash + Eq + ?Sized, F: FnMut(&K, &V) -> bool>(
    &self,
    key: &Q,
    condition: F
) -> Option<(K, V)> where
    K: Clone + Borrow<Q>,
    V: Clone

Removes a key from the map if a condition is met, returning a clone of the key-value pair previously corresponding to the key.

condition will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

Remove a key from the map if a condition is met, returning the result of invoking a function with a reference to the value previously corresponding to the key.

condition will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

pub fn remove_entry_if_and<Q: Hash + Eq + ?Sized, F: FnMut(&K, &V) -> bool, G: FnOnce(&K, &V) -> T, T>(
    &self,
    key: &Q,
    condition: F,
    with_previous_entry: G
) -> Option<T> where
    K: Borrow<Q>, 

Removes a key from the map if a condition is met, returning the result of invoking a function with a reference to the key-value pair previously corresponding to the key.

condition will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

The key may be any borrowed form of the map’s key type, but Hash and Eq on the borrowed form must match those for the key type.

If no value corresponds to the key, insert a new key-value pair into the map. Otherwise, modify the existing value and return a clone of the value previously corresponding to the key.

on_modify will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

pub fn insert_or_modify_entry<F: FnMut(&K, &V) -> V>(
    &self,
    key: K,
    value: V,
    on_modify: F
) -> Option<(K, V)> where
    K: Clone,
    V: Clone

If no value corresponds to the key, insert a new key-value pair into the map. Otherwise, modify the existing value and return a clone of the key-value pair previously corresponding to the key.

on_modify will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

If no value corresponds to the key, invoke a default function to insert a new key-value pair into the map. Otherwise, modify the existing value and return a clone of the value previously corresponding to the key.

on_insert may be invoked, even if None is returned.

on_modify will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

pub fn insert_with_or_modify_entry<F: FnOnce() -> V, G: FnMut(&K, &V) -> V>(
    &self,
    key: K,
    on_insert: F,
    on_modify: G
) -> Option<(K, V)> where
    K: Clone,
    V: Clone

If no value corresponds to the key, invoke a default function to insert a new key-value pair into the map. Otherwise, modify the existing value and return a clone of the key-value pair previously corresponding to the key.

on_insert may be invoked, even if None is returned.

on_modify will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

If no value corresponds to the key, insert a new key-value pair into the map. Otherwise, modify the existing value and return the result of invoking a function with a reference to the value previously corresponding to the key.

on_modify will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

pub fn insert_or_modify_entry_and<F: FnMut(&K, &V) -> V, G: FnOnce(&K, &V) -> T, T>(
    &self,
    key: K,
    value: V,
    on_modify: F,
    with_old_entry: G
) -> Option<T>

If no value corresponds to the key, insert a new key-value pair into the map. Otherwise, modify the existing value and return the result of invoking a function with a reference to the key-value pair previously corresponding to the supplied key.

on_modify will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

If no value corresponds to the key, invoke a default function to insert a new key-value pair into the map. Otherwise, modify the existing value and return the result of invoking a function with a reference to the value previously corresponding to the key.

on_insert may be invoked, even if None is returned.

on_modify will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

pub fn insert_with_or_modify_entry_and<F: FnOnce() -> V, G: FnMut(&K, &V) -> V, H: FnOnce(&K, &V) -> T, T>(
    &self,
    key: K,
    on_insert: F,
    on_modify: G,
    with_old_entry: H
) -> Option<T>

If no value corresponds to the key, invoke a default function to insert a new key-value pair into the map. Otherwise, modify the existing value and return the result of invoking a function with a reference to the key-value pair previously corresponding to the supplied key.

on_insert may be invoked, even if None is returned.

on_modify will be invoked at least once if Some is returned. It may also be invoked one or more times if None is returned.

Modifies the value corresponding to a key, returning a clone of the value previously corresponding to that key.

pub fn modify_entry<F: FnMut(&K, &V) -> V>(
    &self,
    key: K,
    on_modify: F
) -> Option<(K, V)> where
    K: Clone,
    V: Clone

Modifies the value corresponding to a key, returning a clone of the key-value pair previously corresponding to that key.

Modifies the value corresponding to a key, returning the result of invoking a function with a reference to the value previously corresponding to the key.

pub fn modify_entry_and<F: FnMut(&K, &V) -> V, G: FnOnce(&K, &V) -> T, T>(
    &self,
    key: K,
    on_modify: F,
    with_old_entry: G
) -> Option<T>

Modifies the value corresponding to a key, returning the result of invoking a function with a reference to the key-value pair previously corresponding to the supplied key.

Trait Implementations

Returns the “default value” for a type. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.