Interface LongIterator

All Superinterfaces:
Cloneable
All Known Subinterfaces:
PeekableLongIterator

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