mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-06 02:01:58 +02:00
18 lines
291 B
Java
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();
|
|
}
|