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

org.hnau.base.extensions.boolean.BooleanFromExtensions.kt Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
package org.hnau.base.extensions.boolean


fun Int.toBoolean() = this != 0
fun Long.toBoolean() = this != 0L
fun Short.toBoolean() = toInt().toBoolean()
fun Byte.toBoolean() = toInt().toBoolean()
fun Float.toBoolean() = this != 0f
fun Double.toBoolean() = this != 0.0




© 2015 - 2025 Weber Informatics LLC | Privacy Policy