kotlin.collections.List

List

inline fun <T> List(
    size: Int, 
    init: (index: Int) -> T
): List<T>

Platform and version requirements: Kotlin 1.1

Creates a new read-only list with the specified size, where each element is calculated by calling the specified init function. The 登录查看完整内容