static Set setPlus(Collection l, A... more) { Set set = similarEmptySet(l); set.addAll(l); for (A a : more) set.add(a); ret set; }