IsSubnormal

Trait IsSubnormal 

Source
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§

Source

fn is_subnormal_(&self) -> bool

Returns true if self is sub-normal.

Implementations on Foreign Types§

Source§

impl IsSubnormal for f64

Source§

fn is_subnormal_(&self) -> bool

Returns true if self is sub-normal

Source§

impl IsSubnormal for Complex<f64>

Source§

fn is_subnormal_(&self) -> bool

Returns true if self is sub-normal

Implementors§