rufl 0.1.3

A powerful util function library for rust
Documentation
//! math mod contains several utility functions for handling mathematical calculations.
//!

mod float;
mod integer;
mod number;

mod abs;
pub use abs::*;

mod sqrt;
pub use sqrt::*;

mod gcd;
pub use gcd::*;

mod lcm;
pub use lcm::*;

mod fib_nth;
pub use fib_nth::*;

mod fib_seq;
pub use fib_seq::*;

mod fib_sum;
pub use fib_sum::*;

mod round;
pub use round::*;

mod round_up;
pub use round_up::*;

mod round_down;
pub use round_down::*;

mod is_prime;
pub use is_prime::*;

mod factorial;
pub use factorial::*;

mod sum;
pub use sum::*;

mod average;
pub use average::*;

mod percent;
pub use percent::*;

mod truncate;
pub use truncate::*;

mod to_radian;
pub use to_radian::*;

mod to_angle;
pub use to_angle::*;

mod harmonic;
pub use harmonic::*;