Compute the greatest common divisor of a and b.
@return gcd of a and b up to sign; if a >= 0 and b >= 0, return value is >= 0; if a == 0 and b == 0, returns 0.
See Implementation
Compute the greatest common divisor of a and b.
@return gcd of a and b up to sign; if a >= 0 and b >= 0, return value is >= 0; if a == 0 and b == 0, returns 0.