static L entriesFollowingIndices(L l, Cl indices) { new L out; fOr (int i : indices) if (i+1 < l(l)) out.add(l.get(i+1)); ret out; }