takeWhile
所在位置是kotlin.collections.takeWhile
,其相关用法介绍如下。
用法:
@ExperimentalUnsignedTypes inline fun UIntArray.takeWhile(
predicate: (UInt) -> Boolean
): List<UInt>
@ExperimentalUnsignedTypes inline fun ULongArray.takeWhile(
predicate: (ULong) -> Boolean
): List<ULong>
@ExperimentalUnsignedTypes inline fun UByteArray.takeWhile(
predicate: (UByte) -> Boolean
): List<UByte>
@ExperimentalUnsignedTypes inline fun UShortArray.takeWhile(
predicate: (UShort) -> Boolean
): List<UShort>
返回包含满足给定 predicate 的第一个元素的列表。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val chars = ('a'..'z').toList()
println(chars.take(3)) // [a, b, c]
println(chars.takeWhile { it < 'f' }) // [a, b, c, d, e]
println(chars.takeLast(2)) // [y, z]
println(chars.takeLastWhile { it > 'w' }) // [x, y, z]
//sampleEnd
}
输出:
[a, b, c] [a, b, c, d, e] [y, z] [x, y, z]
相关用法
- Kotlin take用法及代码示例
- Kotlin takeLastWhile用法及代码示例
- Kotlin takeLast用法及代码示例
- Kotlin toTypedArray用法及代码示例
- Kotlin then用法及代码示例
- Kotlin toByteArray用法及代码示例
- Kotlin toBooleanStrict用法及代码示例
- Kotlin to用法及代码示例
- Kotlin toBooleanStrictOrNull用法及代码示例
- Kotlin thenComparator用法及代码示例
- Kotlin titlecase用法及代码示例
- Kotlin toSortedMap用法及代码示例
- Kotlin thenBy用法及代码示例
- Kotlin toProperties用法及代码示例
- Kotlin toList用法及代码示例
- Kotlin thenByDescending用法及代码示例
- Kotlin thenDescending用法及代码示例
- Kotlin toString用法及代码示例
- Kotlin trimIndent用法及代码示例
- Kotlin trimMargin用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.collections.takeWhile。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。