6 lines
134 B
Kotlin
6 lines
134 B
Kotlin
|
|
package exh.util
|
||
|
|
|
||
|
|
fun Float.floor(): Int = kotlin.math.floor(this).toInt()
|
||
|
|
|
||
|
|
fun Double.floor(): Int = kotlin.math.floor(this).toInt()
|