elementAt所在位置是kotlin.sequences.elementAt,其相关用法介绍如下。

用法:

fun <T> Sequence<T>.elementAt(index: Int): T

返回给定 index 处的元素,如果 index 超出此序列的范围,则抛出 IndexOutOfBoundsException

操作是 terminal

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val list = listOf(1, 2, 3)
println(list.elementAt(0)) // 1
println(list.elementAt(2)) // 3
// list.elementAt(3) // will fail with IndexOutOfBoundsException

val emptyList = emptyList<Int>()
// emptyList.elementAt(0) // will fail with IndexOutOfBoundsException
//sampleEnd
}

输出:

1
3