static bool eqicLists(L a, L b) { int n = l(a); if (n != l(b)) false; for i to n: if (!eqic(a.get(i), b.get(i))) false; true; }