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