4 lines
64 B
Kotlin
Vendored
4 lines
64 B
Kotlin
Vendored
open class IIterable<out T> {
|
|
fun iterator() : IIterator<T>
|
|
}
|