public interface IntIterator
extends java.lang.Cloneable
A simple iterator over integer values.
Using an IntIterator instead of Java's Iterator<Integer>
avoids the overhead of the Interger class: on some tests,
IntIterator is nearly twice as fast as Iterator<Integer>.