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