com.github.grzesiek_galezowski.collections.readonly.interfaces.ReadOnlyCollectionIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of readonly-collections Show documentation
Show all versions of readonly-collections Show documentation
Read-only collection wrappers for Java built-in collections
The newest version!
package com.github.grzesiek_galezowski.collections.readonly.interfaces;
import java.util.function.Consumer;
public interface ReadOnlyCollectionIterator {
boolean hasNext();
T next();
void forEachRemaining(Consumer super T> action);
}