evalUnary method
Implementation
@override
Decimal evalUnary(Decimal? v1) {
if (v1 == null) {
throw new AssertionError("Operand may not be null.");
}
return fEval(v1);
}
@override
Decimal evalUnary(Decimal? v1) {
if (v1 == null) {
throw new AssertionError("Operand may not be null.");
}
return fEval(v1);
}