io.sarl.lang.core.scoping.extensions.numbers.arithmetic
Class AtomicIntegerArithmeticExtensions
final class AtomicIntegerArithmeticExtensions
extends java.lang.Object
Provide static operators for numbers of type AtomicInteger.
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(AtomicInteger,long)
The binary divide operator.
static int operator_divide(AtomicInteger,byte)
The binary divide operator.
static int operator_divide(AtomicInteger,int)
The binary divide operator.
static int operator_divide(AtomicInteger,short)
The binary divide operator.
static double operator_divide(AtomicInteger,double)
The binary divide operator.
static float operator_divide(AtomicInteger,float)
The binary divide operator.
static int operator_divide(AtomicInteger,Byte)
The binary divide operator.
static float operator_divide(AtomicInteger,Float)
The binary divide operator.
static int operator_divide(AtomicInteger,Integer)
The binary divide operator.
static long operator_divide(AtomicInteger,Long)
The binary divide operator.
static double operator_divide(AtomicInteger,Number)
The binary divide operator.
static int operator_divide(AtomicInteger,Short)
The binary divide operator.
static int operator_divide(AtomicInteger,AtomicInteger)
The binary divide operator.
static long operator_divide(AtomicInteger,AtomicLong)
The binary divide operator.
static int operator_minus(AtomicInteger)
The unary minus operator.
static long operator_minus(AtomicInteger,long)
The binary minus operator.
static int operator_minus(AtomicInteger,byte)
The binary minus operator.
static int operator_minus(AtomicInteger,int)
The binary minus operator.
static int operator_minus(AtomicInteger,short)
The binary minus operator.
static double operator_minus(AtomicInteger,double)
The binary minus operator.
static float operator_minus(AtomicInteger,float)
The binary minus operator.
static int operator_minus(AtomicInteger,Byte)
The binary minus operator.
static float operator_minus(AtomicInteger,Float)
The binary minus operator.
static int operator_minus(AtomicInteger,Integer)
The binary minus operator.
static long operator_minus(AtomicInteger,Long)
The binary minus operator.
static double operator_minus(AtomicInteger,Number)
The binary minus operator.
static int operator_minus(AtomicInteger,Short)
The binary minus operator.
static int operator_minus(AtomicInteger,AtomicInteger)
The binary minus operator.
static long operator_minus(AtomicInteger,AtomicLong)
The binary minus operator.
static long operator_modulo(AtomicInteger,long)
The binary modulo operator.
static int operator_modulo(AtomicInteger,byte)
The binary modulo operator.
static int operator_modulo(AtomicInteger,int)
The binary modulo operator.
static int operator_modulo(AtomicInteger,short)
The binary modulo operator.
static double operator_modulo(AtomicInteger,double)
The binary modulo operator.
static float operator_modulo(AtomicInteger,float)
The binary modulo operator.
static int operator_modulo(AtomicInteger,Byte)
The binary modulo operator.
static float operator_modulo(AtomicInteger,Float)
The binary modulo operator.
static int operator_modulo(AtomicInteger,Integer)
The binary modulo operator.
static long operator_modulo(AtomicInteger,Long)
The binary modulo operator.
static double operator_modulo(AtomicInteger,Number)
The binary modulo operator.
static int operator_modulo(AtomicInteger,Short)
The binary modulo operator.
static int operator_modulo(AtomicInteger,AtomicInteger)
The binary modulo operator.
static long operator_modulo(AtomicInteger,AtomicLong)
The binary modulo operator.
static long operator_multiply(AtomicInteger,long)
The binary multiply operator.
static int operator_multiply(AtomicInteger,byte)
The binary multiply operator.
static int operator_multiply(AtomicInteger,int)
The binary multiply operator.
static int operator_multiply(AtomicInteger,short)
The binary multiply operator.
static double operator_multiply(AtomicInteger,double)
The binary multiply operator.
static float operator_multiply(AtomicInteger,float)
The binary multiply operator.
static int operator_multiply(AtomicInteger,Byte)
The binary multiply operator.
static float operator_multiply(AtomicInteger,Float)
The binary multiply operator.
static int operator_multiply(AtomicInteger,Integer)
The binary multiply operator.
static long operator_multiply(AtomicInteger,Long)
The binary multiply operator.
static double operator_multiply(AtomicInteger,Number)
The binary multiply operator.
static int operator_multiply(AtomicInteger,Short)
The binary multiply operator.
static int operator_multiply(AtomicInteger,AtomicInteger)
The binary multiply operator.
static long operator_multiply(AtomicInteger,AtomicLong)
The binary multiply operator.
static long operator_plus(AtomicInteger,long)
The binary plus operator.
static int operator_plus(AtomicInteger,byte)
The binary plus operator.
static int operator_plus(AtomicInteger,int)
The binary plus operator.
static int operator_plus(AtomicInteger,short)
The binary plus operator.
static double operator_plus(AtomicInteger,double)
The binary plus operator.
static float operator_plus(AtomicInteger,float)
The binary plus operator.
static int operator_plus(AtomicInteger,Byte)
The binary plus operator.
static float operator_plus(AtomicInteger,Float)
The binary plus operator.
static int operator_plus(AtomicInteger,Integer)
The binary plus operator.
static long operator_plus(AtomicInteger,Long)
The binary plus operator.
static double operator_plus(AtomicInteger,Number)
The binary plus operator.
static int operator_plus(AtomicInteger,Short)
The binary plus operator.
static int operator_plus(AtomicInteger,AtomicInteger)
The binary plus operator.
static long operator_plus(AtomicInteger,AtomicLong)
The binary plus operator.
static double operator_power(AtomicInteger,long)
The binary power operator.
static double operator_power(AtomicInteger,byte)
The binary power operator.
static double operator_power(AtomicInteger,int)
The binary power operator.
static double operator_power(AtomicInteger,short)
The binary power operator.
static double operator_power(AtomicInteger,double)
The binary power operator.
static double operator_power(AtomicInteger,float)
The binary power operator.
static double operator_power(AtomicInteger,Number)
The binary power operator.
Action Details
operator_divide(AtomicInteger,long)
def operator_divide(AtomicInteger,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(AtomicInteger,byte)
def operator_divide(AtomicInteger,byte) : int
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(AtomicInteger,int)
def operator_divide(AtomicInteger,int) : int
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(AtomicInteger,short)
def operator_divide(AtomicInteger,short) : int
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(AtomicInteger,double)
def operator_divide(AtomicInteger,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(AtomicInteger,float)
def operator_divide(AtomicInteger,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(AtomicInteger,Byte)
def operator_divide(AtomicInteger,Byte) : int
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(AtomicInteger,Float)
def operator_divide(AtomicInteger,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(AtomicInteger,Integer)
def operator_divide(AtomicInteger,Integer) : int
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(AtomicInteger,Long)
def operator_divide(AtomicInteger,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(AtomicInteger,Number)
def operator_divide(AtomicInteger,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(AtomicInteger,Short)
def operator_divide(AtomicInteger,Short) : int
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(AtomicInteger,AtomicInteger)
def operator_divide(AtomicInteger,AtomicInteger) : int
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(AtomicInteger,AtomicLong)
def operator_divide(AtomicInteger,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(AtomicInteger)
def operator_minus(AtomicInteger) : int
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(AtomicInteger,long)
def operator_minus(AtomicInteger,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(AtomicInteger,byte)
def operator_minus(AtomicInteger,byte) : int
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(AtomicInteger,int)
def operator_minus(AtomicInteger,int) : int
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(AtomicInteger,short)
def operator_minus(AtomicInteger,short) : int
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(AtomicInteger,double)
def operator_minus(AtomicInteger,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(AtomicInteger,float)
def operator_minus(AtomicInteger,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(AtomicInteger,Byte)
def operator_minus(AtomicInteger,Byte) : int
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(AtomicInteger,Float)
def operator_minus(AtomicInteger,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(AtomicInteger,Integer)
def operator_minus(AtomicInteger,Integer) : int
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(AtomicInteger,Long)
def operator_minus(AtomicInteger,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(AtomicInteger,Number)
def operator_minus(AtomicInteger,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(AtomicInteger,Short)
def operator_minus(AtomicInteger,Short) : int
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(AtomicInteger,AtomicInteger)
def operator_minus(AtomicInteger,AtomicInteger) : int
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(AtomicInteger,AtomicLong)
def operator_minus(AtomicInteger,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(AtomicInteger,long)
def operator_modulo(AtomicInteger,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(AtomicInteger,byte)
def operator_modulo(AtomicInteger,byte) : int
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(AtomicInteger,int)
def operator_modulo(AtomicInteger,int) : int
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(AtomicInteger,short)
def operator_modulo(AtomicInteger,short) : int
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(AtomicInteger,double)
def operator_modulo(AtomicInteger,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(AtomicInteger,float)
def operator_modulo(AtomicInteger,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(AtomicInteger,Byte)
def operator_modulo(AtomicInteger,Byte) : int
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(AtomicInteger,Float)
def operator_modulo(AtomicInteger,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(AtomicInteger,Integer)
def operator_modulo(AtomicInteger,Integer) : int
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(AtomicInteger,Long)
def operator_modulo(AtomicInteger,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(AtomicInteger,Number)
def operator_modulo(AtomicInteger,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(AtomicInteger,Short)
def operator_modulo(AtomicInteger,Short) : int
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(AtomicInteger,AtomicInteger)
def operator_modulo(AtomicInteger,AtomicInteger) : int
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(AtomicInteger,AtomicLong)
def operator_modulo(AtomicInteger,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(AtomicInteger,long)
def operator_multiply(AtomicInteger,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(AtomicInteger,byte)
def operator_multiply(AtomicInteger,byte) : int
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(AtomicInteger,int)
def operator_multiply(AtomicInteger,int) : int
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(AtomicInteger,short)
def operator_multiply(AtomicInteger,short) : int
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(AtomicInteger,double)
def operator_multiply(AtomicInteger,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(AtomicInteger,float)
def operator_multiply(AtomicInteger,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(AtomicInteger,Byte)
def operator_multiply(AtomicInteger,Byte) : int
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(AtomicInteger,Float)
def operator_multiply(AtomicInteger,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(AtomicInteger,Integer)
def operator_multiply(AtomicInteger,Integer) : int
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(AtomicInteger,Long)
def operator_multiply(AtomicInteger,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(AtomicInteger,Number)
def operator_multiply(AtomicInteger,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(AtomicInteger,Short)
def operator_multiply(AtomicInteger,Short) : int
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(AtomicInteger,AtomicInteger)
def operator_multiply(AtomicInteger,AtomicInteger) : int
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(AtomicInteger,AtomicLong)
def operator_multiply(AtomicInteger,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(AtomicInteger,long)
def operator_plus(AtomicInteger,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(AtomicInteger,byte)
def operator_plus(AtomicInteger,byte) : int
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(AtomicInteger,int)
def operator_plus(AtomicInteger,int) : int
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(AtomicInteger,short)
def operator_plus(AtomicInteger,short) : int
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(AtomicInteger,double)
def operator_plus(AtomicInteger,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(AtomicInteger,float)
def operator_plus(AtomicInteger,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(AtomicInteger,Byte)
def operator_plus(AtomicInteger,Byte) : int
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(AtomicInteger,Float)
def operator_plus(AtomicInteger,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(AtomicInteger,Integer)
def operator_plus(AtomicInteger,Integer) : int
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(AtomicInteger,Long)
def operator_plus(AtomicInteger,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(AtomicInteger,Number)
def operator_plus(AtomicInteger,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(AtomicInteger,Short)
def operator_plus(AtomicInteger,Short) : int
The binary plus operator. This is the equivalent to the Java + operator.
Parameters:
left - a number.
right - a number.
Returns:
left+right
operator_plus(AtomicInteger,AtomicInteger)
def operator_plus(AtomicInteger,AtomicInteger) : int
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(AtomicInteger,AtomicLong)
def operator_plus(AtomicInteger,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(AtomicInteger,long)
def operator_power(AtomicInteger,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(AtomicInteger,byte)
def operator_power(AtomicInteger,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(AtomicInteger,int)
def operator_power(AtomicInteger,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(AtomicInteger,short)
def operator_power(AtomicInteger,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(AtomicInteger,double)
def operator_power(AtomicInteger,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(AtomicInteger,float)
def operator_power(AtomicInteger,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(AtomicInteger,Number)
def operator_power(AtomicInteger,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)