findLast
@ExperimentalUnsignedTypes
inline
fun
ULongArray
.
findLast
(
predicate
:
(
ULong
)
->
Boolean
)
:
ULong
?
(source)
@ExperimentalUnsignedTypes
inline
fun
UByteArray
.
findLast
(
predicate
:
(
UByte
)
->
Boolean
)
:
UByte
?
(source)
@ExperimentalUnsignedTypes
inline
fun
UShortArray
.
findLast
(
predicate
:
(
UShort
)
->
Boolean
)
:
UShort
?
(source)
Returns the last element matching the given
predicate
, or
null
if no such element was found.
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val numbers = listOf(1, 2, 3, 4, 5, 6, 7)
val firstOdd = numbers.find { it % 2 != 0 }
val lastEven = numbers.findLast { it % 2 == 0 }
println(firstOdd) // 1
println(lastEven) // 6
//sampleEnd
}