| commit | f0d76b98ac29855ae53f9163e3168df6989c5300 | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:04:00 2023 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:04:00 2023 +0000 |
| tree | 7063856b00fcda978586fe349806ad14c4e22c9c | |
| parent | 7d76f02ed695d4e67e97bdc9abe1ee591a7227b5 [diff] | |
| parent | c42c4eaf61c61127a4c1907f0171b453780fade4 [diff] |
Snap for 10447354 from c42c4eaf61c61127a4c1907f0171b453780fade4 to mainline-wifi-release Change-Id: I0af8b68610e09c7dfacebf89facfa5905dd5e9ed
This crate provides a fast conversion of integer primitives to decimal strings. The implementation comes straight from libcore but avoids the performance penalty of going through core::fmt::Formatter.
See also ryu for printing floating point primitives.
Version requirement: rustc 1.36+
[dependencies] itoa = "1.0"
fn main() { let mut buffer = itoa::Buffer::new(); let printed = buffer.format(128u64); assert_eq!(printed, "128"); }
