本文簡要介紹rust語言中 f64.is_subnormal
的用法。
用法
pub fn is_subnormal(self) -> bool
如果數字是 subnormal 則返回 true
。
let min = f64::MIN_POSITIVE; // 2.2250738585072014e-308_f64
let max = f64::MAX;
let lower_than_min = 1.0e-308_f64;
let zero = 0.0_f64;
assert!(!min.is_subnormal());
assert!(!max.is_subnormal());
assert!(!zero.is_subnormal());
assert!(!f64::NAN.is_subnormal());
assert!(!f64::INFINITY.is_subnormal());
// Values between `0` and `min` are Subnormal.
assert!(lower_than_min.is_subnormal());
相關用法
- Rust f64.is_sign_negative用法及代碼示例
- Rust f64.is_sign_positive用法及代碼示例
- Rust f64.is_finite用法及代碼示例
- Rust f64.is_nan用法及代碼示例
- Rust f64.is_infinite用法及代碼示例
- Rust f64.is_normal用法及代碼示例
- 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_subnormal。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。