pub type Finite<T> = ConstrainedFloat<T, FiniteConstraint<T>>;
Expand description
Floating-point representation that must be a real number.
If an operation emits NaN
or infinities, then a panic will occur. Like
Total
, this type implements a total ordering.