Files
kotlin-fork/compiler/testData/psi/examples/collections/IList.kt
T
2013-09-17 18:10:00 +04:00

4 lines
112 B
Kotlin

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