W3cubDocs

/Kotlin

MutableList

Platform and version requirements: JVM (1.1), JS (1.1), Native (1.1)
inline fun <T> MutableList(
    size: Int, 
    init: (index: Int) -> T
): MutableList<T>

Creates a new mutable list with the specified size, where each element is calculated by calling the specified init function.

The function init is called for each list element sequentially starting from the first one. It should return the value for a list element given its index.

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val list = MutableList(3) { index -> 'A' + index }
println(list) // [A, B, C]

list.clear()
println(list) // []
//sampleEnd
}

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list.html