commonMain.CoerceToInt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of time-jvm Show documentation
Show all versions of time-jvm Show documentation
A collection of drawing/charting utilities
The newest version!
package com.juul.krayon.time
/**
* Converts this [Long] to an [Int].
*
* Unlike [toInt], input values not representable by an [Int] are coerced
* to either [Int.MIN_VALUE] or [Int.MAX_VALUE], whichever is closer.
*/
internal fun Long.coerceToInt(): Int =
this.coerceIn(Int.MIN_VALUE.toLong(), Int.MAX_VALUE.toLong()).toInt()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy