![JAR search and dependency download from the Maven repository](/logo.png)
org.d2ab.collection.longs.IterableLongList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sequence Show documentation
Show all versions of sequence Show documentation
A lightweight alternative to Java 8 sequential Stream
The newest version!
package org.d2ab.collection.longs;
import org.d2ab.iterator.longs.LongIterator;
import java.util.Iterator;
/**
* Superinterface for {@link LongList} implementation supporting only regular {@link Iterator} access.
*/
public interface IterableLongList extends LongList {
@Override
LongIterator iterator();
@Override
default LongListIterator listIterator(int index) {
return LongListIterator.forwardOnly(iterator(), index);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy