All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.d2ab.collection.chars.IterableCharList Maven / Gradle / Ivy

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