devela 0.28.0

A development substrate of coherence.
Documentation
// devela::num::dom::real::float::wrapper
//
//! Floating-point wrapper struct.
//

mod definition; // Float

mod basic; // basic operations
mod consts; // constants
mod minimax; // Horner-rel fns
mod series; // Taylor-rel fns

cfg_select! {
    feature = "std" => { mod std; }
                  _ => { mod no_std; } // no_std methods
}

#[cfg(test)]
mod tests_f32;

crate::structural_mods! { // _mods
    _mods {
        pub use super::{
            definition::Float,
        };
    }
}