changed val hasNext to fun hasNext()

in Iterator
This commit is contained in:
Svetlana Isakova
2012-08-14 14:43:28 +04:00
parent 65ddcd0473
commit f96fe4879a
+1 -1
View File
@@ -2,7 +2,7 @@ package jet
public trait Iterator<out T> {
public fun next() : T
public val hasNext : Boolean
public fun hasNext() : Boolean
}
public abstract class ByteIterator() : Iterator<Byte> {