Function gcd

Source
pub fn gcd<T>(a: T, b: T) -> T
where T: Rem<Output = T> + PartialOrd + Zero + Copy + Display,