maskFactor method

  1. @override
int maskFactor(
  1. int factor
)
override

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

Implementation

@override
int maskFactor(int factor) {
  return factor & IntMask;
}