Returns the last character matching the given predicate, or null if no such character was found.
null
import kotlin.test.* fun main() { //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 }xxxxxxxxxx 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) // 1println(lastEven) // 6 Open in Playground →Target: JVMRunning on v.2.1.20
import kotlin.test.* fun main() { //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 }
xxxxxxxxxx
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
Thanks for your feedback!