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

com.github.grzesiek_galezowski.collections.readonly.interfaces.ReadOnlyCollectionIterator Maven / Gradle / Ivy

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 action);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy