static L integerIteratorToList(IntegerIterator it) { if (it == null) null; new L l; while (it.hasNext()) l.add(it.next()); ret l; }