modInverse method
Returns the modular multiplicative inverse of this BigInteger.
Implementation
BigInteger modInverse(BigInteger modulus) {
return BigInteger._(_value.modInverse(modulus._value));
}
Returns the modular multiplicative inverse of this BigInteger.
BigInteger modInverse(BigInteger modulus) {
return BigInteger._(_value.modInverse(modulus._value));
}