Double
.
Modifier and type | Action and description |
---|---|
static double | operator_divide(Double,long) The binary divide operator. |
static double | operator_divide(Double,byte) The binary divide operator. |
static double | operator_divide(Double,int) The binary divide operator. |
static double | operator_divide(Double,short) The binary divide operator. |
static double | operator_divide(Double,double) The binary divide operator. |
static double | operator_divide(Double,float) The binary divide operator. |
static double | operator_minus(Double,long) The binary minus operator. |
static double | operator_minus(Double,byte) The binary minus operator. |
static double | operator_minus(Double,int) The binary minus operator. |
static double | operator_minus(Double,short) The binary minus operator. |
static double | operator_minus(Double,double) The binary minus operator. |
static double | operator_minus(Double,float) The binary minus operator. |
static double | operator_modulo(Double,long) The binary modulo operator. |
static double | operator_modulo(Double,byte) The binary modulo operator. |
static double | operator_modulo(Double,int) The binary modulo operator. |
static double | operator_modulo(Double,short) The binary modulo operator. |
static double | operator_modulo(Double,double) The binary modulo operator. |
static double | operator_modulo(Double,float) The binary modulo operator. |
static double | operator_modulo(Double,Number) The binary modulo operator. |
static double | operator_multiply(Double,long) The binary multiply operator. |
static double | operator_multiply(Double,byte) The binary multiply operator. |
static double | operator_multiply(Double,int) The binary multiply operator. |
static double | operator_multiply(Double,short) The binary multiply operator. |
static double | operator_multiply(Double,double) The binary multiply operator. |
static double | operator_multiply(Double,float) The binary multiply operator. |
static double | operator_plus(Double,long) The binary plus operator. |
static double | operator_plus(Double,byte) The binary plus operator. |
static double | operator_plus(Double,int) The binary plus operator. |
static double | operator_plus(Double,short) The binary plus operator. |
static double | operator_plus(Double,double) The binary plus operator. |
static double | operator_plus(Double,float) The binary plus operator. |
static double | operator_power(Double,long) The binary power operator. |
static double | operator_power(Double,byte) The binary power operator. |
static double | operator_power(Double,int) The binary power operator. |
static double | operator_power(Double,short) The binary power operator. |
static double | operator_power(Double,double) The binary power operator. |
static double | operator_power(Double,float) The binary power operator. |
def operator_divide(Double,long) : double
divide
operator. This is the equivalent to the Java /
operator. This function is not null-safe.
def operator_divide(Double,byte) : double
divide
operator. This is the equivalent to the Java /
operator. This function is not null-safe.
def operator_divide(Double,int) : double
divide
operator. This is the equivalent to the Java /
operator. This function is not null-safe.
def operator_divide(Double,short) : double
divide
operator. This is the equivalent to the Java /
operator. This function is not null-safe.
def operator_divide(Double,double) : double
divide
operator. This is the equivalent to the Java /
operator. This function is not null-safe.
def operator_divide(Double,float) : double
divide
operator. This is the equivalent to the Java /
operator. This function is not null-safe.
def operator_minus(Double,long) : double
minus
operator. This is the equivalent to the Java -
operator. This function is not null-safe.
def operator_minus(Double,byte) : double
minus
operator. This is the equivalent to the Java -
operator. This function is not null-safe.
def operator_minus(Double,int) : double
minus
operator. This is the equivalent to the Java -
operator. This function is not null-safe.
def operator_minus(Double,short) : double
minus
operator. This is the equivalent to the Java -
operator. This function is not null-safe.
def operator_minus(Double,double) : double
minus
operator. This is the equivalent to the Java -
operator. This function is not null-safe.
def operator_minus(Double,float) : double
minus
operator. This is the equivalent to the Java -
operator. This function is not null-safe.
def operator_modulo(Double,long) : double
modulo
operator. This is the equivalent to the Java %
operator. This function is not null-safe.
def operator_modulo(Double,byte) : double
modulo
operator. This is the equivalent to the Java %
operator. This function is not null-safe.
def operator_modulo(Double,int) : double
modulo
operator. This is the equivalent to the Java %
operator. This function is not null-safe.
def operator_modulo(Double,short) : double
modulo
operator. This is the equivalent to the Java %
operator. This function is not null-safe.
def operator_modulo(Double,double) : double
modulo
operator. This is the equivalent to the Java %
operator. This function is not null-safe.
def operator_modulo(Double,float) : double
modulo
operator. This is the equivalent to the Java %
operator. This function is not null-safe.
def operator_modulo(Double,Number) : double
modulo
operator. This is the equivalent to the Java %
operator. This function is not null-safe.
def operator_multiply(Double,long) : double
multiply
operator. This is the equivalent to the Java *
operator. This function is not null-safe.
def operator_multiply(Double,byte) : double
multiply
operator. This is the equivalent to the Java *
operator. This function is not null-safe.
def operator_multiply(Double,int) : double
multiply
operator. This is the equivalent to the Java *
operator. This function is not null-safe.
def operator_multiply(Double,short) : double
multiply
operator. This is the equivalent to the Java *
operator. This function is not null-safe.
def operator_multiply(Double,double) : double
multiply
operator. This is the equivalent to the Java *
operator. This function is not null-safe.
def operator_multiply(Double,float) : double
multiply
operator. This is the equivalent to the Java *
operator. This function is not null-safe.
def operator_plus(Double,long) : double
plus
operator. This is the equivalent to the Java +
operator. This function is not null-safe.
def operator_plus(Double,byte) : double
plus
operator. This is the equivalent to the Java +
operator. This function is not null-safe.
def operator_plus(Double,int) : double
plus
operator. This is the equivalent to the Java +
operator. This function is not null-safe.
def operator_plus(Double,short) : double
plus
operator. This is the equivalent to the Java +
operator. This function is not null-safe.
def operator_plus(Double,double) : double
plus
operator. This is the equivalent to the Java +
operator. This function is not null-safe.
def operator_plus(Double,float) : double
plus
operator. This is the equivalent to the Java +
operator. This function is not null-safe.
def operator_power(Double,long) : double
power
operator. This is the equivalent to the Java's Math.pow()
function. This function is not null-safe.
def operator_power(Double,byte) : double
power
operator. This is the equivalent to the Java's Math.pow()
function. This function is not null-safe.
def operator_power(Double,int) : double
power
operator. This is the equivalent to the Java's Math.pow()
function. This function is not null-safe.
def operator_power(Double,short) : double
power
operator. This is the equivalent to the Java's Math.pow()
function.
def operator_power(Double,double) : double
power
operator. This is the equivalent to the Java's Math.pow()
function. This function is not null-safe.
def operator_power(Double,float) : double
power
operator. This is the equivalent to the Java's Math.pow()
function. This function is not null-safe.