1 2 3 4 5 6 7 8 9
//! Combinatoric functions #![allow(dead_code, unused_imports)] mod factorial; mod totient; pub use factorial::factorial; pub use totient::{carmichael, prime_power_factors, totient};