round

fun round(x: Double): Double
fun round(x: Float): Float
inline fun round(x: Double): Double
inline fun round(x: Float): Float
fun round(x: Double): Double
inline fun round(x: Float): Float
external fun round(x: Double): Double
external fun round(x: Float): Float

Rounds the given value x towards the closest integer with ties rounded towards even integer.

Special cases:

  • round(x) is x where x is NaN or +Inf or -Inf or already a mathematical integer.

Since Kotlin

1.2