static Set similarEmptySet(Collection m) { if (m instanceof TreeSet) ret new TreeSet(((TreeSet) m).comparator()); if (m instanceof LinkedHashSet) ret new LinkedHashSet; ret new HashSet; }