#decimal #floating #convert #ryu #floating-point #f32 #f2d

ryu_floating_decimal

Fast floating point to floating decimal conversion. See the crate 'ryu' for more details

1 unstable release

Uses old Rust 2015

0.1.0 Jun 1, 2020

#2077 in Rust patterns

Download history 1030/week @ 2023-12-07 1562/week @ 2023-12-14 781/week @ 2023-12-21 692/week @ 2023-12-28 1275/week @ 2024-01-04 984/week @ 2024-01-11 1262/week @ 2024-01-18 1509/week @ 2024-01-25 2125/week @ 2024-02-01 2975/week @ 2024-02-08 2144/week @ 2024-02-15 1707/week @ 2024-02-22 1751/week @ 2024-02-29 2109/week @ 2024-03-07 1938/week @ 2024-03-14 1657/week @ 2024-03-21

7,671 downloads per month
Used in 46 crates (via pretty_dtoa)

Apache-2.0

74KB
1.5K SLoC

Ryu Floating Decimal

This crate directly copies the internals of the ryu rust crate, exposing some useful functions and types for more flexible float printing.

This crate exposes the functions d2d and f2d, which convert from f64 to FloatingDecimal64 and f32 to FloatingDecimal32 respectively. These floating decimals can be converted to strings in a custom way.

See the original crate for benchmarks and other information.

Example

use ryu_floating_decimal::f2d;
let value: f32 = 12.091;
let decimal = f2d(value);
assert_eq!(decimal.mantissa, 12091);
assert_eq!(decimal.exponent, -3);

License

Licensed under Apache License, Version 2.0, copied from the original crate


lib.rs:

This crate copies the internals of the ryu rust crate, exposing some useful functions and types for more flexible float printing. This crate exposes the functions d2d and f2d, which convert from f64 to FloatingDecimal64 and f32 to FloatingDecimal32 respectively. These floating decimals can be converted to strings in a custom way.

Dependencies

~120KB