upgrade
Some checks failed
/ test (push) Has been cancelled
/ publish (push) Has been cancelled

too tired to write a detailed commit message or split into self-explanatory commits
This commit is contained in:
2026-01-29 18:11:17 +01:00
parent f85e22311d
commit d2b901a6ff
7 changed files with 50 additions and 108 deletions

View File

@@ -0,0 +1,6 @@
package com.infendro.otp.util
import kotlin.math.pow
internal fun Int.pow(x: Int): Int =
this.toDouble().pow(x).toInt()