Function gcd

Source
pub fn gcd(a: u64, b: u64) -> u64
Expand description

Finds the GCD of a and b.

Examples:

assert_eq!(akshually::math::gcd(48, 36), 12);