W3cubDocs

/Kotlin

toLong

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.3)
fun toLong(): Long
For Common, JVM, JS

Converts this Double value to Long.

The fractional part, if any, is rounded down towards zero. Returns zero if this Double value is NaN, Long.MIN_VALUE if it's less than Long.MIN_VALUE, Long.MAX_VALUE if it's bigger than Long.MAX_VALUE.

For Native

Converts this Double value to Long.

The fractional part, if any, is rounded down. Returns zero if this Double value is NaN, Long.MIN_VALUE if it's less than Long.MIN_VALUE, Long.MAX_VALUE if it's bigger than Long.MAX_VALUE.

© 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/-double/to-long.html