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