[][src]Type Definition decorum::Finite

type Finite<T> = ConstrainedFloat<T, FiniteConstraint<T>>;

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.

Trait Implementations

impl<T> Debug for Finite<T> where
    T: Debug + Float + Primitive
[src]