subtract method

int subtract(
  1. int a,
  2. int b
)

Implementation

int subtract(int a, int b) => (_modulus + a - b) % _modulus;