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

net.chestmc.common.extensions.numbers.Predicates.kt Maven / Gradle / Ivy

package net.chestmc.common.extensions.numbers

/**
 * Verifies if this number has any decimals.
 * If the number is not a [Double] or [Float] always returns false.
 */
inline val Number.hasDecimals get() = toDouble() % 1 == 0.0




© 2015 - 2025 Weber Informatics LLC | Privacy Policy