forked from melod1n/fast-messenger
11 lines
156 B
Kotlin
11 lines
156 B
Kotlin
package com.meloda.fast.extensions
|
|
|
|
import kotlin.math.roundToInt
|
|
|
|
object FloatExtensions {
|
|
|
|
fun Float.int(): Int {
|
|
return roundToInt()
|
|
}
|
|
|
|
} |