pub fn gcd<T>(x: T, y: T) -> Twhere T: Integer,
Calculates the Greatest Common Divisor (GCD) of the number and other. The result is always non-negative.
other