Trait hashmap_to_hashmap::Map [] [src]

pub trait Map<PK: Hash + Eq, PV, NK: Hash + Eq, NV, FK: Fn(&PK, &PV) -> NK, FV: Fn(&PK, &PV) -> NV> {
    fn map(self, key_func: FK, value_func: FV) -> HashMap<NK, NV>;
}

Required Methods

Implementors