javafixes.math.LongUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javafixes Show documentation
Show all versions of javafixes Show documentation
Things I would like to have in Java by default
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