find Last
inline fun BooleanArray.findLast(predicate: (Boolean) -> Boolean): Boolean?
Content copied to clipboard
Returns the last element matching the given predicate, or null
if no such element was found.
Samples
import samples.*
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 }
assertPrints(firstOdd, "1")
assertPrints(lastEven, "6")
//sampleEnd
}
Returns the last element matching the given predicate, or null
if no such element was found.
Since Kotlin
1.3
Samples
import samples.*
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 }
assertPrints(firstOdd, "1")
assertPrints(lastEven, "6")
//sampleEnd
}