MicroUtils/common/src/commonMain/kotlin/dev/inmo/micro_utils/common/Clamp.kt
2020-12-07 22:39:23 +06:00

11 lines
227 B
Kotlin

package dev.inmo.micro_utils.common
@Suppress("NOTHING_TO_INLINE")
inline fun <T : Comparable<T>> T.clamp(min: T, max: T): T {
return when {
this < min -> min
this > max -> max
else -> this
}
}