subtract static method

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

Implementation

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