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