static LPair zipTwoListsToPairs_longer(L l1, L l2) { int n = max(l(l1), l(l2)); LPair out = emptyList(n); for i to n: addPair(out, _get(l1, i), _get(l2, i)); ret out; }