static Set getOrCreateCISet(Map> map, A key) { Set b = map.get(key); if (b == null) map.put(key, b = ciSet()); ret b; }