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