本文简要介绍rust语言中 f64.is_normal
的用法。
用法
pub fn is_normal(self) -> bool
如果数字既不是零、无限、subnormal 或NaN
,则返回true
。
let min = f64::MIN_POSITIVE; // 2.2250738585072014e-308f64
let max = f64::MAX;
let lower_than_min = 1.0e-308_f64;
let zero = 0.0f64;
assert!(min.is_normal());
assert!(max.is_normal());
assert!(!zero.is_normal());
assert!(!f64::NAN.is_normal());
assert!(!f64::INFINITY.is_normal());
// Values between `0` and `min` are Subnormal.
assert!(!lower_than_min.is_normal());
相关用法
- Rust f64.is_nan用法及代码示例
- Rust f64.is_finite用法及代码示例
- Rust f64.is_sign_negative用法及代码示例
- Rust f64.is_subnormal用法及代码示例
- Rust f64.is_infinite用法及代码示例
- Rust f64.is_sign_positive用法及代码示例
- Rust f64.signum用法及代码示例
- Rust f64.sqrt用法及代码示例
- Rust f64.round用法及代码示例
- Rust f64.div_euclid用法及代码示例
- Rust f64.hypot用法及代码示例
- Rust f64.floor用法及代码示例
- Rust f64.log用法及代码示例
- Rust f64.asinh用法及代码示例
- Rust f64.classify用法及代码示例
- Rust f64.abs用法及代码示例
- Rust f64.mul_add用法及代码示例
- Rust f64.asin用法及代码示例
- Rust f64.cbrt用法及代码示例
- Rust f64.to_ne_bytes用法及代码示例
- Rust f64.from_ne_bytes用法及代码示例
- Rust f64.to_radians用法及代码示例
- Rust f64.min用法及代码示例
- Rust f64.atan用法及代码示例
- Rust f64.max用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 f64.is_normal。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。