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

javafixes.math.LongUtil Maven / Gradle / Ivy

There is a newer version: 1.4.2.0
Show newest version
package javafixes.math;

class LongUtil {

    static boolean canFitIntoInt(long value) {
        return value >= Integer.MIN_VALUE && value <= Integer.MAX_VALUE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy