gcd method
Returns the greatest common divisor of this and other.
Implementation
BigInteger gcd(BigInteger other) {
return BigInteger._(_value.gcd(other._value));
}
Returns the greatest common divisor of this and other.
BigInteger gcd(BigInteger other) {
return BigInteger._(_value.gcd(other._value));
}