static L uniquifyCI(Collection l) { TreeSet set = ciSet(); new L out; for (S a : unnull(l)) if (set.add(a)) out.add(a); ret out; }