pub trait CountMap<K>: Default + Sized {
    fn add(&mut self, k: K, count: isize);

    fn empty() -> Self { ... }
    fn singleton(k: K, count: isize) -> Self { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors