mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
86 lines
1.7 KiB
Java
86 lines
1.7 KiB
Java
package java.lang;
|
|
|
|
public final class Math {
|
|
private Math() { }
|
|
|
|
public static double max(double a, double b) {
|
|
return (a < b ? b : a);
|
|
}
|
|
|
|
public static double min(double a, double b) {
|
|
return (a > b ? b : a);
|
|
}
|
|
|
|
public static float max(float a, float b) {
|
|
return (a < b ? b : a);
|
|
}
|
|
|
|
public static float min(float a, float b) {
|
|
return (a > b ? b : a);
|
|
}
|
|
|
|
public static long max(long a, long b) {
|
|
return (a < b ? b : a);
|
|
}
|
|
|
|
public static long min(long a, long b) {
|
|
return (a > b ? b : a);
|
|
}
|
|
|
|
public static int max(int a, int b) {
|
|
return (a < b ? b : a);
|
|
}
|
|
|
|
public static int min(int a, int b) {
|
|
return (a > b ? b : a);
|
|
}
|
|
|
|
public static int abs(int v) {
|
|
return (v < 0 ? -v : v);
|
|
}
|
|
|
|
public static long abs(long v) {
|
|
return (v < 0 ? -v : v);
|
|
}
|
|
|
|
public static float abs(float v) {
|
|
return (v < 0 ? -v : v);
|
|
}
|
|
|
|
public static double abs(double v) {
|
|
return (v < 0 ? -v : v);
|
|
}
|
|
|
|
public static long round(double v) {
|
|
return (long) Math.floor(v + 0.5);
|
|
}
|
|
|
|
public static int round(float v) {
|
|
return (int) Math.floor(v + 0.5);
|
|
}
|
|
|
|
public static native double floor(double v);
|
|
|
|
public static native double ceil(double v);
|
|
|
|
public static native double exp(double v);
|
|
|
|
public static native double log(double v);
|
|
|
|
public static native double cos(double v);
|
|
|
|
public static native double sin(double v);
|
|
|
|
public static native double tan(double v);
|
|
|
|
public static native double acos(double v);
|
|
|
|
public static native double asin(double v);
|
|
|
|
public static native double atan(double v);
|
|
|
|
public static native double sqrt(double v);
|
|
|
|
public static native double pow(double v, double e);
|
|
}
|