pub fn merge_map_list<K, V>(
    map: HashMap<K, Vec<V>>,
    another: HashMap<K, Vec<V>>
) -> HashMap<K, Vec<V>>
where K: Hash + Eq,