
public interface WeakIterator<E> {
	boolean hasNext();
	E next();

}
