static <A, B> L<Pair<A, B>> zipLists(L<A> l1, L<B> l2) {
  ret zip(l1, l2);
}