![JAR search and dependency download from the Maven repository](/logo.png)
org.d2ab.collection.chars.IterableCharList 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.chars;
import org.d2ab.iterator.chars.CharIterator;
import java.util.Iterator;
/**
* Superinterface for {@link CharList} implementation supporting only regular {@link Iterator} access.
*/
public interface IterableCharList extends CharList {
@Override
CharIterator iterator();
@Override
default CharListIterator listIterator(int index) {
return CharListIterator.forwardOnly(iterator(), index);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy