pub trait InitHashMaps {
    type HashMap;

    fn new() -> Self::HashMap;
    fn with_capacity(capacity: usize) -> Self::HashMap;
}

Required Associated Types

Required Methods

Implementors