//! rusty_math is a collection of mathematical functions implemented in Rust
//! Exampe usage:
//! ```
//! use rusty_math::{gcd, lcm, factorial, isprime, primes, permutation, combination};
//! let result = numbers::gcd(12, 15);
//! ```
//!
pub mod calculus;
pub mod distributions;
pub mod equations;
pub mod linear;
pub mod metrics;
pub mod numbers;