4 lines
112 B
Kotlin
4 lines
112 B
Kotlin
open class IList<out T> : IIterable<T>, ISized {
|
|
[operator] fun get(index : Int) : T
|
|
val isEmpty : Boolean
|
|
} |