static S quickSubstring(S s, int i, int j) { if (i == j) ret ""; ret s.substring(i, j); }