Trait StoreBulkMut

trait StoreBulkMut<K, V>: StoreMut<K, V>

Required Methods

fn lm_retain<F>(self: &mut Self, predicate: F)
where
    F: FnMut(&K, &V) -> bool

Retains items satisfying a predicate in this store.

fn lm_extend<I>(self: &mut Self, other: I)
where
    I: IntoIterator<Item = (K, V)>

Extends this store with items from an iterator.

Implementors