eval method
Implementation for this operator.
v1
- Operand 1.
v2
- Operand 2. Null for postfix unary operators
Returns the result of the operation.
Implementation
@override
Decimal eval(Decimal? v1, Decimal? v2) {
return fEval(v1, v2);
}
Implementation for this operator.
v1
- Operand 1.
v2
- Operand 2. Null for postfix unary operators
Returns the result of the operation.
@override
Decimal eval(Decimal? v1, Decimal? v2) {
return fEval(v1, v2);
}