maskOperand method

  1. @override
int maskOperand(
  1. int operand
)
override

Removes the most significant bits from an addition operand. Needed on restricted arithmetic.

Implementation

@override
int maskOperand(int operand) {
  return operand & FactorMask;
}