fun abs(x: Double): Double
fun abs(x: Float): Float
Returns the absolute value of the given value x.
Special cases:
abs(NaN)
is NaN
See Also
absoluteValue
fun abs(n: Int): Int
Returns the absolute value of the given value n.
Special cases:
abs(Int.MIN_VALUE)
is Int.MIN_VALUE
due to an overflowSee Also
absoluteValue
fun abs(n: Long): Long
Returns the absolute value of the given value n.
Special cases:
abs(Long.MIN_VALUE)
is Long.MIN_VALUE
due to an overflowSee Also
absoluteValue
© 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/abs.html