package exh.util fun Float.floor(): Int = kotlin.math.floor(this).toInt() fun Double.floor(): Int = kotlin.math.floor(this).toInt()