Java Utililty Methods BigInteger Mod

List of utility methods to do BigInteger Mod

Description

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

Method

BigIntegermod(BigInteger a, BigInteger b)
Fonction modulo
return (a.subtract((a.divide(b)).multiply(b)));
BigIntegermod(BigInteger dividend, BigInteger divisor)
mod
return dividend.mod(divisor);
BigIntegermod(BigInteger v, BigInteger m)
Returns v (mod m).
The value returned lies in range [ 0 ..
return v.mod(m.abs());