elementAtOrNull

inline fun <T> Array<out T>.elementAtOrNull(index: Int): T?(source)
inline fun ByteArray.elementAtOrNull(index: Int): Byte?(source)
inline fun ShortArray.elementAtOrNull(index: Int): Short?(source)
inline fun IntArray.elementAtOrNull(index: Int): Int?(source)
inline fun LongArray.elementAtOrNull(index: Int): Long?(source)
inline fun FloatArray.elementAtOrNull(index: Int): Float?(source)
inline fun CharArray.elementAtOrNull(index: Int): Char?(source)

Returns an element at the given index or null if the index is out of bounds of this array.

Since Kotlin

1.0

Samples


fun <T> Iterable<T>.elementAtOrNull(index: Int): T?(source)

Returns an element at the given index or null if the index is out of bounds of this collection.

Since Kotlin

1.0

Samples


inline fun <T> List<T>.elementAtOrNull(index: Int): T?(source)

Returns an element at the given index or null if the index is out of bounds of this list.

Since Kotlin

1.0

Samples


Returns an element at the given index or null if the index is out of bounds of this array.

Since Kotlin

1.3

Samples