Trait collection::MapOpsKeySum [] [src]

pub trait MapOpsKeySum<K, V, M> where Self: MapOps<K, V, M>, M: Meta<KV<K, V>>, K: Val + Ord, V: Clone {
    fn merge(&mut self, b: &mut Self) -> Self;
}

Operations on a map with KeySum metadata

Required Methods

Merge two maps, overwriting values from self with b

Implementors