ArithmeticOperatorpublic abstract class ArithmeticOperator extends BinaryOperator This is the superclass for all binary arithmetic operators |
Methods Summary |
---|
public java.lang.Object | apply(java.lang.Object pLeft, java.lang.Object pRight, java.lang.Object pContext, Logger pLogger)Applies the operator to the given value
return Coercions.applyArithmeticOperator (pLeft, pRight, this, pLogger);
| public abstract double | apply(double pLeft, double pRight, Logger pLogger)Applies the operator to the given double values, returning a double
| public abstract long | apply(long pLeft, long pRight, Logger pLogger)Applies the operator to the given double values, returning a double
|
|