blob: 6106368366ff961afaa3ce460e409677a9ab0e53 [file]
package java.util;
public interface Iterator<E> {
boolean hasNext();
E next();
void remove();
}