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) -> boolRetains 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
impl<K: Ord, V> StoreBulkMut for Vec<(K, V)>