add method

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

Implementation

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