static Iterator toIterator(ShortIterator it) { ret it == null ?: new Iterator { public bool hasNext() { ret it.hasNext(); } public int next() { ret it.next(); } }; }