mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
8 lines
223 B
Kotlin
Vendored
8 lines
223 B
Kotlin
Vendored
class MyIterable<E> : Iterable<E> {
|
|
class MyIterator<E> : Iterator<E> {
|
|
override fun hasNext(): Boolean = TODO()
|
|
override fun next(): E = TODO()
|
|
}
|
|
|
|
override fun iterator(): Iterator<E> = TODO()
|
|
} |