dragonbox 0.1.8

Fast floating point to string conversion
Documentation

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)

performance

License