Created
October 2, 2024 05:25
-
-
Save thatisuday/29136bce48b93283633d6edd081edcff to your computer and use it in GitHub Desktop.
Floating-Point Number Types in Rust
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Data Type | Bit Size | Min Value | Max Value | |
---|---|---|---|---|
f32 | 32 | 1.17549435e-38 | 3.40282347e+38 | |
f64 | 64 | 2.2250738585072014e-308 | 1.7976931348623157e+308 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment