static L sortByCalculatedFieldAlphaNumIC(Iterable c, IF1 f) { L l = cloneList(c); sort(l, (a, b) -> cmpAlphanumIC(f.get(a), f.get(b))); ret l; }