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

commonMain.korlibs.math.BooleanConversion.kt Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package korlibs.math

////////////////////
////////////////////

/** Converts this [Boolean] into integer: 1 for true, 0 for false */
inline fun Boolean.toInt(): Int = if (this) 1 else 0
inline fun Boolean.toByte(): Byte = if (this) 1 else 0
inline fun Byte.toBoolean(): Boolean = this.toInt() != 0




© 2015 - 2025 Weber Informatics LLC | Privacy Policy