pub trait CanBeInfinite {
// Required method
fn check_finite(&self) -> bool;
}Expand description
Types that can represent infinite values.
Required Methods§
Sourcefn check_finite(&self) -> bool
fn check_finite(&self) -> bool
Check that this value is finite (i.e. not infinite, NaN, etc).