Trait IsNanProperty

Source
pub trait IsNanProperty {
    // Required method
    fn is_nan_property(&self) -> bool;
}
Expand description

The not-a-number property of floating point numbers.

Required Methods§

Source

fn is_nan_property(&self) -> bool

Returns whether this value is not a number.

Implementations on Foreign Types§

Source§

impl IsNanProperty for f32

Source§

impl IsNanProperty for f64

Source§

impl<T> IsNanProperty for &T
where T: IsNanProperty + ?Sized,

Source§

impl<T> IsNanProperty for &mut T
where T: IsNanProperty + ?Sized,

Implementors§