elementAt

n 번째의 인덱스의 값을 반환한다

public inline fun <T> List<T>.elementAt(index: Int): T {
    return get(index)
}

val list = listOf(1, 2, 3, 4, 5)
println(list.elementAt(2))  // 3
println(list.elementAt(7))  // Error

Last updated