All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.CoerceToInt.kt Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy