static Set setUnion(Set a, Collection b) { Set set = cloneSet(a); addAll(set, b); ret set; }