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