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