IsNaN

Trait IsNaN 

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

This trait provides the interface for the function used to check if a value is NaN.

Required Methods§

Source

fn is_nan_(&self) -> bool

Returns true if self is NaN.

Implementations on Foreign Types§

Source§

impl IsNaN for f64

Source§

fn is_nan_(&self) -> bool

Returns true if self is NaN.

Source§

impl IsNaN for Complex<f64>

Source§

fn is_nan_(&self) -> bool

Returns true if self is NaN.

Implementors§