当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust f64.is_normal用法及代码示例


本文简要介绍rust语言中 f64.is_normal 的用法。

用法

pub fn is_normal(self) -> bool

如果数字既不是零、无限、subnormalNaN,则返回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-lang.org大神的英文原创作品 f64.is_normal。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。