static L ourSubList_noRangeCheck(L l, int startIndex, int endIndex) { if (l instanceof RandomAccess) ret new RandomAccessSubList(l, startIndex, endIndex); else ret new SubList(l, startIndex, endIndex); }