dtolnay / itoa

Fast function for printing integer primitives to a decimal string
Apache License 2.0
306 stars 37 forks source link

Add support for 128-bit integers #9

Closed henninglive closed 7 years ago

henninglive commented 7 years ago

Rust’s 128-bit integer types are currently unstable and feature gated behind the i128_type and i128 gates. It would be great if this crate supported them on nightly until they eventually become stabilized.

dtolnay commented 7 years ago

Sounds good to me. I would accept a PR to add this.

henninglive commented 7 years ago

Great, I will create one.