We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d7da37 commit a51f483Copy full SHA for a51f483
vm/src/float_56.rs
@@ -28,6 +28,9 @@ use std::str::FromStr;
28
/// smallest positive subnormal value is 8.48e-168 (2^-555)
29
/// smallest positive normal value is 2.98e-154 (2^-510)
30
/// maximum finite value is 1.34e154
31
+///
32
+/// A f64 number like 1.00000000001 with 12 decimal digits will be 1.000000000001
33
+/// A f64 number like 1.000000000001 with 13 decimal digits will be converted to 1.0
34
#[derive(Copy, Clone)]
35
pub struct F56(pub [u8; 7]);
36
impl Eq for F56 {}
0 commit comments