round

Common
JVM
JS
Native
1.2
fun round(x: Double): Double
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.