any
所在位置是kotlin.text.any
,其相关用法介绍如下。
用法一
如果 char 序列至少有一个字符,则返回 true
。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//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
}
输出:
emptyList.any() is false nonEmptyList.any() is true
用法二
如果至少有一个字符与给定的 predicate 匹配,则返回 true
。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//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
}
输出:
zeroToTen.any { isEven(it) } is true zeroToTen.any(isEven) is true odds.any { isEven(it) } is false emptyList.any { true } is false
相关用法
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin associateWithTo用法及代码示例
- Kotlin aggregateTo用法及代码示例
- Kotlin associate用法及代码示例
- Kotlin asSequence用法及代码示例
- Kotlin associateTo用法及代码示例
- Kotlin asReversed用法及代码示例
- Kotlin associateWith用法及代码示例
- Kotlin associateByTo用法及代码示例
- Kotlin aggregate用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin Double.dec用法及代码示例
- Kotlin windowedSequence用法及代码示例
- Kotlin contentToString用法及代码示例
- Kotlin groupByTo用法及代码示例
- Kotlin commonPrefixWith用法及代码示例
- Kotlin MatchResult.Destructured用法及代码示例
- Kotlin Delegates.notNull用法及代码示例
- Kotlin ifBlank用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.text.any。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。