Iterable/Iterator in stdlib

This commit is contained in:
Alex Tkachman
2011-09-03 13:31:43 +02:00
parent 672756e459
commit 44c4b2db3d
4 changed files with 19 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
package jet;
public abstract class Iterable$$Impl implements Iterable {
}
+5
View File
@@ -0,0 +1,5 @@
package jet;
public interface Iterable<T> extends JetObject {
Iterator<T> iterator ();
}
+4
View File
@@ -0,0 +1,4 @@
package jet;
public abstract class Iterator$$Impl implements Iterator {
}
+6
View File
@@ -0,0 +1,6 @@
package jet;
public interface Iterator<T> extends JetObject {
boolean hasNext();
T next ();
}