Files
otp.kt/src/commonMain/kotlin/com/infendro/otp/util/Math.kt
Infendro d2b901a6ff
Some checks failed
/ test (push) Has been cancelled
/ publish (push) Has been cancelled
upgrade
too tired to write a detailed commit message or split into self-explanatory commits
2026-01-29 18:12:16 +01:00

7 lines
126 B
Kotlin

package com.infendro.otp.util
import kotlin.math.pow
internal fun Int.pow(x: Int): Int =
this.toDouble().pow(x).toInt()