io.sarl.lang.core.scoping.extensions.numbers.arithmetic
Class PrimitiveByteArithmeticExtensions
final class PrimitiveByteArithmeticExtensions
extends java.lang.Object
Provide static operators for numbers of type byte.
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 int operator_divide(byte,Byte)
The binary divide operator.
static float operator_divide(byte,Float)
The binary divide operator.
static int operator_divide(byte,Integer)
The binary divide operator.
static long operator_divide(byte,Long)
The binary divide operator.
static double operator_divide(byte,Number)
The binary divide operator.
static int operator_divide(byte,Short)
The binary divide operator.
static int operator_divide(byte,AtomicInteger)
The binary divide operator.
static long operator_divide(byte,AtomicLong)
The binary divide operator.
static int operator_minus(byte,Byte)
The binary minus operator.
static float operator_minus(byte,Float)
The binary minus operator.
static int operator_minus(byte,Integer)
The binary minus operator.
static long operator_minus(byte,Long)
The binary minus operator.
static double operator_minus(byte,Number)
The binary minus operator.
static int operator_minus(byte,Short)
The binary minus operator.
static int operator_minus(byte,AtomicInteger)
The binary minus operator.
static long operator_minus(byte,AtomicLong)
The binary minus operator.
static int operator_modulo(byte,Byte)
The binary modulo operator.
static float operator_modulo(byte,Float)
The binary modulo operator.
static int operator_modulo(byte,Integer)
The binary modulo operator.
static long operator_modulo(byte,Long)
The binary modulo operator.
static double operator_modulo(byte,Number)
The binary modulo operator.
static int operator_modulo(byte,Short)
The binary modulo operator.
static int operator_modulo(byte,AtomicInteger)
The binary modulo operator.
static long operator_modulo(byte,AtomicLong)
The binary modulo operator.
static int operator_multiply(byte,Byte)
The binary multiply operator.
static float operator_multiply(byte,Float)
The binary multiply operator.
static int operator_multiply(byte,Integer)
The binary multiply operator.
static long operator_multiply(byte,Long)
The binary multiply operator.
static double operator_multiply(byte,Number)
The binary multiply operator.
static int operator_multiply(byte,Short)
The binary multiply operator.
static int operator_multiply(byte,AtomicInteger)
The binary multiply operator.
static long operator_multiply(byte,AtomicLong)
The binary multiply operator.
static int operator_plus(byte,Byte)
The binary plus operator.
static float operator_plus(byte,Float)
The binary plus operator.
static int operator_plus(byte,Integer)
The binary plus operator.
static long operator_plus(byte,Long)
The binary plus operator.
static double operator_plus(byte,Number)
The binary plus operator.
static int operator_plus(byte,Short)
The binary plus operator.
static int operator_plus(byte,AtomicInteger)
The binary plus operator.
static long operator_plus(byte,AtomicLong)
The binary plus operator.
static double operator_power(byte,Number)
The binary power operator.
Action Details
operator_divide(byte,Byte)
def operator_divide(byte,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(byte,Float)
def operator_divide(byte,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(byte,Integer)
def operator_divide(byte,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(byte,Long)
def operator_divide(byte,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(byte,Number)
def operator_divide(byte,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(byte,Short)
def operator_divide(byte,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(byte,AtomicInteger)
def operator_divide(byte,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(byte,AtomicLong)
def operator_divide(byte,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(byte,Byte)
def operator_minus(byte,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(byte,Float)
def operator_minus(byte,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(byte,Integer)
def operator_minus(byte,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(byte,Long)
def operator_minus(byte,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(byte,Number)
def operator_minus(byte,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(byte,Short)
def operator_minus(byte,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(byte,AtomicInteger)
def operator_minus(byte,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(byte,AtomicLong)
def operator_minus(byte,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(byte,Byte)
def operator_modulo(byte,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(byte,Float)
def operator_modulo(byte,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(byte,Integer)
def operator_modulo(byte,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(byte,Long)
def operator_modulo(byte,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(byte,Number)
def operator_modulo(byte,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(byte,Short)
def operator_modulo(byte,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(byte,AtomicInteger)
def operator_modulo(byte,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(byte,AtomicLong)
def operator_modulo(byte,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(byte,Byte)
def operator_multiply(byte,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(byte,Float)
def operator_multiply(byte,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(byte,Integer)
def operator_multiply(byte,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(byte,Long)
def operator_multiply(byte,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(byte,Number)
def operator_multiply(byte,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(byte,Short)
def operator_multiply(byte,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(byte,AtomicInteger)
def operator_multiply(byte,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(byte,AtomicLong)
def operator_multiply(byte,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(byte,Byte)
def operator_plus(byte,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(byte,Float)
def operator_plus(byte,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(byte,Integer)
def operator_plus(byte,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(byte,Long)
def operator_plus(byte,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(byte,Number)
def operator_plus(byte,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(byte,Short)
def operator_plus(byte,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(byte,AtomicInteger)
def operator_plus(byte,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(byte,AtomicLong)
def operator_plus(byte,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(byte,Number)
def operator_power(byte,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)