pub trait IsSubnormal {
// Required method
fn is_subnormal_(&self) -> bool;
}
Expand description
This trait provides the interface for the function used to check if a number is sub-normal.
Required Methods§
Sourcefn is_subnormal_(&self) -> bool
fn is_subnormal_(&self) -> bool
Returns true
if self
is sub-normal.
Implementations on Foreign Types§
Source§impl IsSubnormal for f64
impl IsSubnormal for f64
Source§fn is_subnormal_(&self) -> bool
fn is_subnormal_(&self) -> bool
Returns true
if self
is sub-normal
Source§impl IsSubnormal for Complex<f64>
impl IsSubnormal for Complex<f64>
Source§fn is_subnormal_(&self) -> bool
fn is_subnormal_(&self) -> bool
Returns true
if self
is sub-normal