static Set intersectSets_nullIsFull(Set a, Collection b) { ret a == null ? b : b == null ? a : setIntersection(a, b); }