universal_constants 0.0.1

Physical and mathematical constants that are generally considered to be universally constant.
Documentation
1
2
3
4
5
6
7
use universal_constants::math;

#[test]
fn math_tests() {
    assert_eq!(math::PI, std::f64::consts::PI);
    assert_eq!(math::EULER, std::f64::consts::E);
}