Java Utililty Methods Long Number Mod

List of utility methods to do Long Number Mod

Description

The list of methods to do Long Number Mod are organized into topic(s).

Method

longmodulo(long a, long n)
Get the arithmetic modulo.
while (a < 0)
    a += n;
return a % n;