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