Files
SlimeVR-Server/java/io/eiren/util/collections/ResettableIterator.java
2022-09-13 03:13:06 +03:00

18 lines
291 B
Java

package io.eiren.util.collections;
import java.util.Iterator;
/**
* {@link Iterator} that can be reset and iterated from the start by using
* {@link #reset()}
*
* @author Rena
*
* @param <E>
*/
public interface ResettableIterator<E> extends Iterator<E> {
public void reset();
}