10 releases
0.1.9 | Aug 13, 2023 |
---|---|
0.1.8 | Jul 15, 2023 |
0.1.7 | Mar 5, 2023 |
0.1.5 | Dec 17, 2022 |
0.1.0 | Apr 21, 2019 |
#236 in Value formatting
23 downloads per month
9KB
93 lines
Precise float to string
This crate computes the decimal representation of the single rational number whose value is mathematically equal to a given float.
Note that this is almost never an appropriate way to print user-facing values. For that, use the ryu crate instead.
[dependencies]
precise = "0.1"
Example
fn main() {
// 0.1000000000000000055511151231257827021181583404541015625
println!("{}", precise::to_string(0.1));
}
License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~480KB
~10K SLoC