static Set setDiff_bothWays(Cl a, Cl b) { a = asSet(a); b = asSet(b); Set out = similarEmptySet(a); fOr (A x : a) if (!contains(b, x)) out.add(x); fOr (A x : b) if (!contains(a, x)) out.add(x); ret out; }