W3cubDocs

/Kotlin

round

inline fun round(x: Double): Double

Platform and version requirements: Kotlin 1.2

inline fun round(x: Float): Float

Platform and version requirements: Kotlin 1.2

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–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.math/round.html