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