fun <T> Iterable<T>.last(): T
Returns the last element.
NoSuchElementException
- if the collection is empty.
fun <T> List<T>.last(): T
Returns the last element.
NoSuchElementException
- if the list is empty.
inline fun <T> Iterable<T>.last(predicate: (T) -> Boolean): T
inline fun <T> List<T>.last(predicate: (T) -> Boolean): T
inline fun <T> Array<out T>.last( predicate: (T) -> Boolean ): T
inline fun ByteArray.last(predicate: (Byte) -> Boolean): Byte
inline fun ShortArray.last( predicate: (Short) -> Boolean ): Short
inline fun IntArray.last(predicate: (Int) -> Boolean): Int
inline fun LongArray.last(predicate: (Long) -> Boolean): Long
inline fun FloatArray.last( predicate: (Float) -> Boolean ): Float
inline fun DoubleArray.last( predicate: (Double) -> Boolean ): Double
inline fun BooleanArray.last( predicate: (Boolean) -> Boolean ): Boolean
inline fun CharArray.last(predicate: (Char) -> Boolean): Char
Returns the last element matching the given predicate.
NoSuchElementException
- if no such element is found.
fun <T> Array<out T>.last(): T
fun ByteArray.last(): Byte
fun ShortArray.last(): Short
fun IntArray.last(): Int
fun LongArray.last(): Long
fun FloatArray.last(): Float
fun DoubleArray.last(): Double
fun BooleanArray.last(): Boolean
fun CharArray.last(): Char
Returns the last element.
NoSuchElementException
- if the array is empty.
© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/last.html