blob: 55fd048e7a7a692abf4c6f92ce8ce1372c4c919a [file] [log] [blame]
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>
}