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

walkmc.extensions.numbers.Predicates.kt Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package walkmc.extensions.numbers

/**
 * Verifies if this double has any decimals.
 */
inline val Double.hasDecimals get() = this % 1 == 0.0

/**
 * Verifies if this float has any decimals.
 */
inline val Float.hasDecimals get() = this % 1 == 0f






© 2015 - 2025 Weber Informatics LLC | Privacy Policy