modSub method

BigInt modSub(
  1. BigInt other,
  2. BigInt m
)

Implementation

BigInt modSub(BigInt other, BigInt m) {
  return (this - other).mod(m);
}