5 lines
94 B
Kotlin
5 lines
94 B
Kotlin
package com.infendro.kdf.util
|
|
|
|
internal fun Int.ceilDiv(n: Int): Int =
|
|
(this + n - 1) / n
|