package F2;
/* JADX INFO: Access modifiers changed from: package-private */
/* JADX INFO: loaded from: classes.dex */
public class c extends b {
public static int a(long j3) {
return Long.signum(j3);
}
public static int b(double d4) {
if (Double.isNaN(d4)) {
throw new IllegalArgumentException("Cannot round NaN value.");
}
if (d4 > 2.147483647E9d) {
return Integer.MAX_VALUE;
}
if (d4 < -2.147483648E9d) {
return Integer.MIN_VALUE;
}
return (int) Math.round(d4);
}
public static int c(float f3) {
if (Float.isNaN(f3)) {
throw new IllegalArgumentException("Cannot round NaN value.");
}
return Math.round(f3);
}
}
Download file