static Set lookupAllAsCISet(Map map, Collection l) { Set out = ciSet(); if (l != null) for (A a : l) addIfNotNull(out, map.get(a)); ret out; } static Set lookupAllAsCISet(Collection l, Map map) { ret lookupAllAsCISet(map, l); }