static Set joinCISets(Collection... l) { Set set = ciSet(); for (Collection o : l) if (o != null) set.addAll(o); ret set; } static Set joinCISets(Iterable> l) { Set set = ciSet(); if (l != null) for (Collection o : l) if (o != null) set.addAll(o); ret set; }