Remove "Iterator.iterator()" intrinsic, add stdlib function

This commit is contained in:
Alexander Udalov
2014-02-21 21:20:35 +04:00
parent 4a5823c5bb
commit 11cc7f46f4
11 changed files with 29 additions and 99 deletions
-2
View File
@@ -9,8 +9,6 @@ public trait MutableIterator<out T> : Iterator<T> {
public fun remove(): Unit
}
public fun <T> Iterator<T>.iterator(): Iterator<T>
public trait ListIterator<out T> : Iterator<T> {
// Query Operations
override fun next(): T