static Set setMinus(Set set, O... stuff) { Set s2 = cloneSet(set); for (O o : stuff) s2.remove(o); ret s2; }