itertools::group_map

Function into_group_map_by

Source
pub fn into_group_map_by<I, K, V, F>(iter: I, f: F) -> HashMap<K, Vec<V>>
where I: Iterator<Item = V>, K: Hash + Eq, F: FnMut(&V) -> K,