gcd method

  1. @override
BigInt gcd(
  1. BigInt a,
  2. BigInt b
)
override

Computes the greatest common divisor: gcd(a, b).

Implementation

@override
BigInt gcd(BigInt a, BigInt b) => a.gcd(b);