1 2 3 4 5 6 7
pub use self::gcd::euclid_gcd as gcd; pub use self::gcd::{euclid_gcd, binary_gcd}; pub use self::lcm::lcm; mod gcd; mod lcm;