static <A> int lengthLevel2_gen(Collection l) {
  int sum = 0;
  fOr (O c : l) sum += l(c);
  ret sum;
}