octane 0.1.2

A web server built from the ground up.
Documentation
1
2
3
pub fn approx_equal<T: Into<f64>>(a: T, b: T) -> bool {
    return (a.into() - b.into()).abs() < 0.00001f64;
}