static TreeSet cloneTreeSet(Iterable set) { if (set == null) ret new TreeSet; synchronized(collectionMutex(set)) { new TreeSet s; s.addAll(set); ret s; } }