AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

This commit is contained in:
Jacob Signorovitch
2025-02-13 10:55:21 -05:00
parent f26b576c99
commit 7ac3142974
3 changed files with 28 additions and 2 deletions

View File

@@ -14,4 +14,15 @@
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1739196678733</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>

View File

@@ -1,3 +1,15 @@
package arrays;
class Sieve implements Iterator<T> {}
import java.util.Iterator;
import tester.Tester;
class Sieve implements Iterator<Integer> {
public boolean hasNext() { return false; }
public Integer next() { return null; }
}
class Examples {
Iterator<Integer> i = new Sieve();
}