static L differingIndices(L l1, L l2) { if (l(l1) != l(l2)) null; new L out; for i over l1: if (!eq(l1.get(i), l2.get(i))) out.add(i); ret out; }