Type Definition decorum::NotNan [] [src]

type NotNan<T> = ConstrainedFloat<T, NotNanConstraint<T>>;

An ordered and normalized floating point value that cannot be NaN. Other IEEE-754 values like INF and negative zero are allowed.

Trait Implementations

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

[src]

Performs the conversion.