io.sarl.lang.core.scoping.extensions.numbers.arithmetic
Class AtomicLongArithmeticExtensions
final class AtomicLongArithmeticExtensions
extends java.lang.Object
Provide static operators for numbers of type AtomicLong.
Maven Group Identifier:
io.sarl.lang
Maven Artifact Identifier:
core
Since:
0.7
See:
"https://github.com/eclipse/xtext-extras/issues/186"
Action Summary
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.
Action Details
operator_divide(AtomicLong,long)
def operator_divide(AtomicLong,long) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,byte)
def operator_divide(AtomicLong,byte) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,int)
def operator_divide(AtomicLong,int) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,short)
def operator_divide(AtomicLong,short) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,double)
def operator_divide(AtomicLong,double) : double
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,float)
def operator_divide(AtomicLong,float) : float
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,Byte)
def operator_divide(AtomicLong,Byte) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,Float)
def operator_divide(AtomicLong,Float) : float
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,Integer)
def operator_divide(AtomicLong,Integer) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,Long)
def operator_divide(AtomicLong,Long) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,Number)
def operator_divide(AtomicLong,Number) : double
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,Short)
def operator_divide(AtomicLong,Short) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,AtomicInteger)
def operator_divide(AtomicLong,AtomicInteger) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_divide(AtomicLong,AtomicLong)
def operator_divide(AtomicLong,AtomicLong) : long
The binary divide operator. This is the equivalent to the Java / operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left/right
operator_minus(AtomicLong)
def operator_minus(AtomicLong) : long
The unary minus operator. This is the equivalent to the Java's - function. This function is not null-safe.
Parameters:
number - a number.
Returns:
-number
operator_minus(AtomicLong,long)
def operator_minus(AtomicLong,long) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,byte)
def operator_minus(AtomicLong,byte) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,int)
def operator_minus(AtomicLong,int) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,short)
def operator_minus(AtomicLong,short) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,double)
def operator_minus(AtomicLong,double) : double
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,float)
def operator_minus(AtomicLong,float) : float
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,Byte)
def operator_minus(AtomicLong,Byte) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,Float)
def operator_minus(AtomicLong,Float) : float
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,Integer)
def operator_minus(AtomicLong,Integer) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,Long)
def operator_minus(AtomicLong,Long) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,Number)
def operator_minus(AtomicLong,Number) : double
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,Short)
def operator_minus(AtomicLong,Short) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,AtomicInteger)
def operator_minus(AtomicLong,AtomicInteger) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_minus(AtomicLong,AtomicLong)
def operator_minus(AtomicLong,AtomicLong) : long
The binary minus operator. This is the equivalent to the Java - operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left-right
operator_modulo(AtomicLong,long)
def operator_modulo(AtomicLong,long) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,byte)
def operator_modulo(AtomicLong,byte) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,int)
def operator_modulo(AtomicLong,int) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,short)
def operator_modulo(AtomicLong,short) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,double)
def operator_modulo(AtomicLong,double) : double
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,float)
def operator_modulo(AtomicLong,float) : float
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,Byte)
def operator_modulo(AtomicLong,Byte) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,Float)
def operator_modulo(AtomicLong,Float) : float
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,Integer)
def operator_modulo(AtomicLong,Integer) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,Long)
def operator_modulo(AtomicLong,Long) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,Number)
def operator_modulo(AtomicLong,Number) : double
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,Short)
def operator_modulo(AtomicLong,Short) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,AtomicInteger)
def operator_modulo(AtomicLong,AtomicInteger) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_modulo(AtomicLong,AtomicLong)
def operator_modulo(AtomicLong,AtomicLong) : long
The binary modulo operator. This is the equivalent to the Java % operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left%right
operator_multiply(AtomicLong,long)
def operator_multiply(AtomicLong,long) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,byte)
def operator_multiply(AtomicLong,byte) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,int)
def operator_multiply(AtomicLong,int) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,short)
def operator_multiply(AtomicLong,short) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,double)
def operator_multiply(AtomicLong,double) : double
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,float)
def operator_multiply(AtomicLong,float) : float
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,Byte)
def operator_multiply(AtomicLong,Byte) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,Float)
def operator_multiply(AtomicLong,Float) : float
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,Integer)
def operator_multiply(AtomicLong,Integer) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,Long)
def operator_multiply(AtomicLong,Long) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,Number)
def operator_multiply(AtomicLong,Number) : double
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,Short)
def operator_multiply(AtomicLong,Short) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,AtomicInteger)
def operator_multiply(AtomicLong,AtomicInteger) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_multiply(AtomicLong,AtomicLong)
def operator_multiply(AtomicLong,AtomicLong) : long
The binary multiply operator. This is the equivalent to the Java * operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left*right
operator_plus(AtomicLong,long)
def operator_plus(AtomicLong,long) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,byte)
def operator_plus(AtomicLong,byte) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,int)
def operator_plus(AtomicLong,int) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,short)
def operator_plus(AtomicLong,short) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,double)
def operator_plus(AtomicLong,double) : double
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,float)
def operator_plus(AtomicLong,float) : float
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,Byte)
def operator_plus(AtomicLong,Byte) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,Float)
def operator_plus(AtomicLong,Float) : float
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,Integer)
def operator_plus(AtomicLong,Integer) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,Long)
def operator_plus(AtomicLong,Long) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,Number)
def operator_plus(AtomicLong,Number) : double
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,Short)
def operator_plus(AtomicLong,Short) : long
The binary plus operator. This is the equivalent to the Java + operator.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,AtomicInteger)
def operator_plus(AtomicLong,AtomicInteger) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicLong,AtomicLong)
def operator_plus(AtomicLong,AtomicLong) : long
The binary plus operator. This is the equivalent to the Java + operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_power(AtomicLong,long)
def operator_power(AtomicLong,long) : double
The binary power operator. This is the equivalent to the Java's Math.pow() function. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
Math::pow(left, right)
operator_power(AtomicLong,byte)
def operator_power(AtomicLong,byte) : double
The binary power operator. This is the equivalent to the Java's Math.pow() function. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
Math::pow(left, right)
operator_power(AtomicLong,int)
def operator_power(AtomicLong,int) : double
The binary power operator. This is the equivalent to the Java's Math.pow() function. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
Math::pow(left, right)
operator_power(AtomicLong,short)
def operator_power(AtomicLong,short) : double
The binary power operator. This is the equivalent to the Java's Math.pow() function.
Parameters:
left - a number.
right - a number.
Returns:
Math::pow(left, right)
operator_power(AtomicLong,double)
def operator_power(AtomicLong,double) : double
The binary power operator. This is the equivalent to the Java's Math.pow() function. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
Math::pow(left, right)
operator_power(AtomicLong,float)
def operator_power(AtomicLong,float) : double
The binary power operator. This is the equivalent to the Java's Math.pow() function. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
Math::pow(left, right)
operator_power(AtomicLong,Number)
def operator_power(AtomicLong,Number) : double
The binary power operator. This is the equivalent to the Java's Math.pow() function. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
Math::pow(left, right)