1
0
Fork 0
happy-cat/src/nativeMain/kotlin/fi/schro/util/NumberExt.kt

8 lines
152 B
Kotlin

package fi.schro.util
import kotlin.math.max
import kotlin.math.min
fun Int.clamp(start: Int, end: Int): Int {
return min(end, max(start, this))
}