static LPair zipTwoListsToPairs_lengthOfFirst(L l1, L l2) { int n = l(l1); LPair out = emptyList(n); for i to n: addPair(out, l1.get(i), get(l2, i)); ret out; }