blob: 26ba19b7cbba7a34c041a63e9995c7942712fb6d [file] [log] [blame]
package test;
public interface Iterator<E> {
E next();
boolean hasNext();
}