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.
© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.math/round.html