pub trait Float: Encoding + Infinite + IntrinsicOrd + Nan + Real { }
Expand description
Floating-point representations.
Types that implement this trait are represented using IEEE-754 encoding and
expose the details of that encoding, including infinities, NaN
, and
operations on real numbers. This trait is implemented by primitive
floating-point types and the Total
proxy type.