any
Returns true
if sequence has at least one element.
The operation is terminal.
Since Kotlin
1.0Samples
import kotlin.test.*
fun main() {
//sampleStart
val emptyList = emptyList<Int>()
println("emptyList.any() is ${emptyList.any()}") // false
val nonEmptyList = listOf(1, 2, 3)
println("nonEmptyList.any() is ${nonEmptyList.any()}") // true
//sampleEnd
}
Returns true
if at least one element matches the given predicate.
The operation is terminal.
Since Kotlin
1.0Samples
import kotlin.test.*
fun main() {
//sampleStart
val isEven: (Int) -> Boolean = { it % 2 == 0 }
val zeroToTen = 0..10
println("zeroToTen.any { isEven(it) } is ${zeroToTen.any { isEven(it) }}") // true
println("zeroToTen.any(isEven) is ${zeroToTen.any(isEven)}") // true
val odds = zeroToTen.map { it * 2 + 1 }
println("odds.any { isEven(it) } is ${odds.any { isEven(it) }}") // false
val emptyList = emptyList<Int>()
println("emptyList.any { true } is ${emptyList.any { true }}") // false
//sampleEnd
}