static Set joinSets(Cl... l) { Set set = similarEmptySet(first(l)); for (Cl o : l) if (o != null) set.addAll(o); ret set; }