gcd method

BigInteger gcd(
  1. BigInteger other
)

Returns the greatest common divisor of this and other.

Implementation

BigInteger gcd(BigInteger other) {
  return BigInteger._(_value.gcd(other._value));
}