dragonbox

Fast floating point to string conversion

APACHE-2.0 License

Downloads
6.3K
Stars
56
Committers
1

Dragonbox

This crate contains a basic port of https://github.com/jk-jeon/dragonbox to Rust for benchmarking purposes.

Please see the upstream repo for an explanation of the approach and comparison to the Ryū algorithm.

Example

fn main() {
    let mut buffer = dragonbox::Buffer::new();
    let printed = buffer.format(1.234);
    assert_eq!(printed, "1.234E0");
}

Performance (lower is better)

License