static int lCommonPrefixIC(S a, S b) { int i = 0, n = Math.min(l(a), l(b)); while (i < n && eqic(a.charAt(i), b.charAt(i))) ++i; ret i; }