pub trait IsNaN { // Required method fn is_nan_(&self) -> bool; }
This trait provides the interface for the function used to check if a value is NaN.
Returns true if self is NaN.
true
self