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

6 lines
210 B
Kotlin

open class IMutableList<T> : IList<T>, IMutableIterable<T> {
fun set(index : Int, value : T) : T
fun add(index : Int, value : T)
fun remove(index : Int) : T
fun mutableIterator() : IMutableIterator<T>
}