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