Fields
static final double
The double
value that is closer than any other to e, the base of the natural logarithms.
static final double
The double
value that is closer than any other to pi (π), the ratio of the circumference of a circle to its diameter.
static final double
The double
value that is closer than any other to tau (τ), the ratio of the circumference of a circle to its radius.
static double
Returns the absolute value of a double
value.
static float
Returns the absolute value of a float
value.
static int
Returns the absolute value of an int
value.
static long
Returns the absolute value of a long
value.
static int
Returns the mathematical absolute value of an int
value if it is exactly representable as an int
, throwing ArithmeticException
if the result overflows the positive int
range.
static long
Returns the mathematical absolute value of an long
value if it is exactly representable as an long
, throwing ArithmeticException
if the result overflows the positive long
range.
static double
Returns the arc cosine of a value; the returned angle is in the range 0.0 through pi.
static int
Returns the sum of its arguments, throwing an exception if the result overflows an int
.
static long
Returns the sum of its arguments, throwing an exception if the result overflows a long
.
static double
Returns the arc sine of a value; the returned angle is in the range −pi/2 through pi/2.
static double
Returns the arc tangent of a value; the returned angle is in the range −pi/2 through pi/2.
static double
atan2(double y, double x)
Returns the angle theta from the conversion of rectangular coordinates (x
, y
) to polar coordinates (r, theta).
static double
Returns the cube root of a double
value.
static double
Returns the smallest (closest to negative infinity) double
value that is greater than or equal to the argument and is equal to a mathematical integer.
static int
Returns the smallest (closest to negative infinity) int
value that is greater than or equal to the algebraic quotient.
static long
Returns the smallest (closest to negative infinity) long
value that is greater than or equal to the algebraic quotient.
static long
Returns the smallest (closest to negative infinity) long
value that is greater than or equal to the algebraic quotient.
static int
Returns the smallest (closest to negative infinity) int
value that is greater than or equal to the algebraic quotient.
static long
Returns the smallest (closest to negative infinity) long
value that is greater than or equal to the algebraic quotient.
static int
Returns the ceiling modulus of the int
arguments.
static int
Returns the ceiling modulus of the long
and int
arguments.
static long
Returns the ceiling modulus of the long
arguments.
static double
clamp(double value, double min, double max)
Clamps the value to fit between min and max.
static float
clamp(float value, float min, float max)
Clamps the value to fit between min and max.
static int
clamp(long value, int min, int max)
Clamps the value to fit between min and max.
static long
clamp(long value, long min, long max)
Clamps the value to fit between min and max.
static double
Returns the first floating-point argument with the sign of the second floating-point argument.
static float
Returns the first floating-point argument with the sign of the second floating-point argument.
static double
Returns the trigonometric cosine of an angle.
static double
Returns the hyperbolic cosine of a double
value.
static int
Returns the argument decremented by one, throwing an exception if the result overflows an int
.
static long
Returns the argument decremented by one, throwing an exception if the result overflows a long
.
static int
Returns the quotient of the arguments, throwing an exception if the result overflows an int
.
static long
Returns the quotient of the arguments, throwing an exception if the result overflows a long
.
static double
Returns Euler's number e raised to the power of a double
value.
static double
static double
Returns the largest (closest to positive infinity) double
value that is less than or equal to the argument and is equal to a mathematical integer.
static int
Returns the largest (closest to positive infinity) int
value that is less than or equal to the algebraic quotient.
static long
Returns the largest (closest to positive infinity) long
value that is less than or equal to the algebraic quotient.
static long
Returns the largest (closest to positive infinity) long
value that is less than or equal to the algebraic quotient.
static int
Returns the largest (closest to positive infinity) int
value that is less than or equal to the algebraic quotient.
static long
Returns the largest (closest to positive infinity) long
value that is less than or equal to the algebraic quotient.
static int
Returns the floor modulus of the int
arguments.
static int
Returns the floor modulus of the long
and int
arguments.
static long
Returns the floor modulus of the long
arguments.
static double
fma(double a, double b, double c)
Returns the fused multiply add of the three arguments; that is, returns the exact product of the first two arguments summed with the third argument and then rounded once to the nearest double
.
static float
fma(float a, float b, float c)
Returns the fused multiply add of the three arguments; that is, returns the exact product of the first two arguments summed with the third argument and then rounded once to the nearest float
.
static int
Returns the unbiased exponent used in the representation of a double
.
static int
Returns the unbiased exponent used in the representation of a float
.
static double
hypot(double x, double y)
Returns sqrt(x2 +y2) without intermediate overflow or underflow.
static double
Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.
static int
Returns the argument incremented by one, throwing an exception if the result overflows an int
.
static long
Returns the argument incremented by one, throwing an exception if the result overflows a long
.
static double
Returns the natural logarithm (base e) of a double
value.
static double
Returns the base 10 logarithm of a double
value.
static double
Returns the natural logarithm of the sum of the argument and 1.
static double
Returns the greater of two double
values.
static float
Returns the greater of two float
values.
static int
Returns the greater of two int
values.
static long
Returns the greater of two long
values.
static double
Returns the smaller of two double
values.
static float
Returns the smaller of two float
values.
static int
Returns the smaller of two int
values.
static long
Returns the smaller of two long
values.
static int
Returns the product of the arguments, throwing an exception if the result overflows an int
.
static long
Returns the product of the arguments, throwing an exception if the result overflows a long
.
static long
Returns the product of the arguments, throwing an exception if the result overflows a long
.
static long
Returns the exact mathematical product of the arguments.
static long
Returns as a long
the most significant 64 bits of the 128-bit product of two 64-bit factors.
static int
Returns the negation of the argument, throwing an exception if the result overflows an int
.
static long
Returns the negation of the argument, throwing an exception if the result overflows a long
.
static double
Returns the floating-point number adjacent to the first argument in the direction of the second argument.
static float
Returns the floating-point number adjacent to the first argument in the direction of the second argument.
static double
Returns the floating-point value adjacent to d
in the direction of negative infinity.
static float
Returns the floating-point value adjacent to f
in the direction of negative infinity.
static double
Returns the floating-point value adjacent to d
in the direction of positive infinity.
static float
Returns the floating-point value adjacent to f
in the direction of positive infinity.
static double
Returns the value of the first argument raised to the power of the second argument.
static double
Returns a double
value with a positive sign, greater than or equal to 0.0
and less than 1.0
.
static double
Returns the double
value that is closest in value to the argument and is equal to a mathematical integer.
static long
Returns the closest long
to the argument, with ties rounding to positive infinity.
static int
Returns the closest int
to the argument, with ties rounding to positive infinity.
static double
scalb(double d, int scaleFactor)
Returns d
× 2scaleFactor
rounded as if performed by a single correctly rounded floating-point multiply.
static float
scalb(float f, int scaleFactor)
Returns f
× 2scaleFactor
rounded as if performed by a single correctly rounded floating-point multiply.
static double
Returns the signum function of the argument; zero if the argument is zero, 1.0 if the argument is greater than zero, -1.0 if the argument is less than zero.
static float
Returns the signum function of the argument; zero if the argument is zero, 1.0f if the argument is greater than zero, -1.0f if the argument is less than zero.
static double
Returns the trigonometric sine of an angle.
static double
Returns the hyperbolic sine of a double
value.
static double
Returns the correctly rounded positive square root of a double
value.
static int
Returns the difference of the arguments, throwing an exception if the result overflows an int
.
static long
Returns the difference of the arguments, throwing an exception if the result overflows a long
.
static double
Returns the trigonometric tangent of an angle.
static double
Returns the hyperbolic tangent of a double
value.
static double
Converts an angle measured in radians to an approximately equivalent angle measured in degrees.
static int
Returns the value of the long
argument, throwing an exception if the value overflows an int
.
static double
Converts an angle measured in degrees to an approximately equivalent angle measured in radians.
static double
Returns the size of an ulp of the argument.
static float
Returns the size of an ulp of the argument.
static long
Returns as a long
the most significant 64 bits of the unsigned 128-bit product of two unsigned 64-bit factors.
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4