coerceAtLeast
所在位置是kotlin.ranges.coerceAtLeast
,其相关用法介绍如下。
用法一
确保此值不小于指定的 minimumValue 。
例子:
import java.time.DayOfWeek
import kotlin.test.assertFailsWith
fun main(args: Array<String>) {
//sampleStart
println(DayOfWeek.WEDNESDAY.coerceAtLeast(DayOfWeek.MONDAY)) // WEDNESDAY
println(DayOfWeek.WEDNESDAY.coerceAtLeast(DayOfWeek.FRIDAY)) // FRIDAY
//sampleEnd
}
输出:
WEDNESDAY FRIDAY
如果它大于或等于minimumValue,则返回此值,否则返回minimumValue。
用法二
确保此值不小于指定的 minimumValue 。
例子:
import java.time.DayOfWeek
import kotlin.test.assertFailsWith
fun main(args: Array<String>) {
//sampleStart
println(10.coerceAtLeast(5)) // 10
println(10.coerceAtLeast(20)) // 20
//sampleEnd
}
输出:
10 20
如果它大于或等于minimumValue,则返回此值,否则返回minimumValue。
用法三
确保此值不小于指定的 minimumValue 。
例子:
import java.time.DayOfWeek
import kotlin.test.assertFailsWith
fun main(args: Array<String>) {
//sampleStart
println(10u.coerceAtLeast(5u)) // 10
println(10u.coerceAtLeast(20u)) // 20
//sampleEnd
}
输出:
10 20
如果它大于或等于minimumValue,则返回此值,否则返回minimumValue。
相关用法
- Kotlin coerceAtMost用法及代码示例
- Kotlin coerceIn用法及代码示例
- Kotlin contentToString用法及代码示例
- Kotlin commonPrefixWith用法及代码示例
- Kotlin containsAll用法及代码示例
- Kotlin code用法及代码示例
- Kotlin copyOf用法及代码示例
- Kotlin component2用法及代码示例
- Kotlin contains用法及代码示例
- Kotlin commonSuffixWith用法及代码示例
- Kotlin containsValue用法及代码示例
- Kotlin component1用法及代码示例
- Kotlin contentEquals用法及代码示例
- Kotlin capitalize用法及代码示例
- Kotlin chunkedSequence用法及代码示例
- Kotlin chunked用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin Double.dec用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.ranges.coerceAtLeast。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。