pub trait DecodableFloat: RawFloat + Copy {
    // Required method
    fn min_pos_norm_value() -> Self;
}
🔬This is a nightly-only experimental API. (flt2dec)
Expand description

A floating point type which can be decoded.

Required Methods§

source

fn min_pos_norm_value() -> Self

🔬This is a nightly-only experimental API. (flt2dec)

The minimum positive normalized value.

Implementors§