static bool areSetsEqual(Set a, Set b) { ret l(a) == l(b) && containsAll(a, b) && containsAll(b, a); }