double
.
Modifier and type | Action and description |
---|---|
static double | operator_divide(double,Number) The binary divide operator. |
static double | operator_minus(double,Number) The binary minus operator. |
static double | operator_modulo(double,Number) The binary modulo operator. |
static double | operator_multiply(double,Number) The binary multiply operator. |
static double | operator_plus(double,Number) The binary plus operator. |
static double | operator_power(double,Number) The binary power operator. |
def operator_divide(double,Number) : double
divide
operator. This is the equivalent to the Java /
operator. This function is not null-safe.
def operator_minus(double,Number) : double
minus
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,Number) : double
multiply
operator. This is the equivalent to the Java *
operator. This function is not null-safe.
def operator_plus(double,Number) : double
plus
operator. This is the equivalent to the Java +
operator. This function is not null-safe.
def operator_power(double,Number) : double
power
operator. This is the equivalent to the Java's Math.pow()
function. This function is not null-safe.