static > Map reversePseudoMultiMapAsCIMap(Map mm) { Map map = ciMap(); for (A a : mm.keys()) for (B b : mm.get(a)) map.put(b, a); ret map; }