float-polyfills 0.1.0

Drop-in no_std-compatible polyfills for various f32 and f64 methods.
Documentation
#![no_std]
//! Drop-in `no_std`-compatible polyfills for various `f32` and `f64` methods.
//! Supports:
//! - abs
//! - acos
//! - asin
//! - atan
//! - atan2
//! - ceil
//! - copysign
//! - cos
//! - exp
//! - floor
//! - hypot
//! - ln
//! - log2
//! - log10
//! - mul_add
//! - powf
//! - powi
//! - recip
//! - round
//! - sin
//! - sin_cos
//! - sqrt
//! - tan
//! - trunc

mod float_32;
mod float_64;

pub use float_32::F32Polyfill;
pub use float_64::F64Polyfill;